我有一個可能存在或可能不存在的文件路徑。Asp.net FileStream如果文件不存在則創建拋出錯誤
我想創建/覆蓋文件,我有這樣的代碼:
string filePath = GetFilePath();
using (FileStream file = new FileStream(filePath, FileMode.Create, FileAccess.Write, FileShare.None))
{
xDoc.Save(file);
}
當我打電話using (FileStream file ...)
和文件不存在,它拋出一個Could not find a part of the path...
錯誤。
我做錯了什麼?不應該創建文件如果不存在?
對此沒有任何線索。 – Catalin 2013-04-30 06:54:52