如果目录不存在,我这里有一段代码会中断:
System.IO.File.WriteAllText(filePath, content);
在一行(或几行)中,是否可以检查通向新文件的目录是否不存在,如果不存在,则在创建新文件之前创建它?
我正在使用.NET 3.5。
(new FileInfo(filePath)).Directory.Create()在写入文件之前。
(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);