我想将文本框的所有内容写入当前目录的 .txt 文件。我编写了以下代码,但是它引发了“错误的路径名错误”。我哪里出错了?
string fileDateTime = "StepsGA-" + DateTime.Now + ".txt";
string fname = System.IO.Path.Combine(System.Environment.CurrentDirectory, fileDateTime);
File.WriteAllText(fname, txtSteps.Text);
谢谢。