我試圖將數據保存到這樣的文件:爲什麼會出現「路徑中的非法字符」錯誤?
FileStream file = new FileStream("c:\temp", FileMode.Create, System.IO.FileAccess.Write);
byte[] bytes = new byte[file.Length];
file.Read(bytes, 0, (int)file.Length);
file.Write(bytes, 0, bytes.Length);
file.Close();
file.Close();
而且我得到這個錯誤:
路徑中具有非法字符。 描述:執行當前Web請求期間發生未處理的異常。請查看堆棧跟蹤以獲取有關該錯誤的更多信息以及源代碼的位置。
異常詳細信息:System.ArgumentException:路徑中的非法字符。
我在做什麼錯?