我正在开发一个解析 xml 文件并生成 txt 文件的控制台应用程序。我已经创建了文件路径来存储新文件,但这有空格,如下所示:
string filePath = "C:\\Program Files\\my path\\fileName.txt"
但我正在使用以下方法创建路径:
string filePath = Path.Combine(temp, "fileName.txt");
而 temp 是前一条路径。当我打电话时:
StreamWriter sw = File.CreateText(filePath);
给出此异常:找不到路径的一部分:filePath
有人可以帮我解决这个问题吗?如何使用此路径创建文件?