string path = System.Windows.Forms.Application.StartupPath;
System.IO.Stream so = new System.IO.FileStream(path, System.IO.FileMode.Create);
這樣寫為什麼會提示 對路徑“F:\待完成\2.0版(在這個基礎上修改)\源碼\SRSF\SRSF\bin\Debug”的訪問被拒絕。
FileStream是文件流。。你傳遞一個已經存在的目錄是要報錯的,改為你的文件,而不是目錄名稱
string path = System.Windows.Forms.Application.StartupPath+@"\xxxxx.txt";