小编典典

如果创建文件不存在,如何创建目录?

all

如果目录不存在,我这里有一段代码会中断:

System.IO.File.WriteAllText(filePath, content);

在一行(或几行)中,是否可以检查通向新文件的目录是否不存在,如果不存在,则在创建新文件之前创建它?

我正在使用.NET 3.5。


阅读 92

收藏
2022-06-06

共1个答案

小编典典

去创造

(new FileInfo(filePath)).Directory.Create()在写入文件之前。

....或者,如果它存在,则创建(否则什么都不做)

System.IO.FileInfo file = new System.IO.FileInfo(filePath);
file.Directory.Create(); // If the directory already exists, this method does nothing.
System.IO.File.WriteAllText(file.FullName, content);
2022-06-06