0
在我的小控制檯應用程序的c#我必須寫入一個文件,如果它不是我必須創建它。它工作正常,當文件已經創建,但是當我嘗試創建文件然後寫入它我得到一個System.IO.IOException說該文件正在別處使用。這裏是我一直在使用創建然後寫入文件c#
if (!File.Exists(FilePath))
{
File.Create(FilePath);
}
FileInfo file = new FileInfo(FilePath);
using (TextWriter tw = new StreamWriter(file.Open(FileMode.Truncate)))
{
tw.Write(filePresent);
tw.Close();
}