string readme = "readme.txt"; //檔名稱
string txtpath = path + "/" + readme;//檔案存放路徑
directoryinfo directoryinfo = new directoryinfo(path);
if (!directoryinfo.exists) //判斷 資料夾是否存在
if (!file.exists(txtpath))
streamwriter sw = new streamwriter(txtpath, true, system.text.encoding.default);//第乙個引數代表路徑,第二個引數表示檔案是否覆蓋還是在原有檔案基礎上新增,第三個引數代表編碼格式
sw.writeline("存放原始**");//寫入txt檔案
sw.writeline("存放過程**");
sw.writeline("存放結果**");
sw.flush();
sw.close();
寫入日誌到txt檔案
寫入日誌 簡潔版 帶自動刪除版 大小 寫入日誌 using streamwriter writer new streamwriter path,true long size 0 獲取檔案大小 using filestream file system.io.file.openread path 判斷日...
C 寫入txt 檔案
filestream fs new filestream c s.txt filemode.create,fileaccess.write streamwriter sw new streamwriter fs sw.basestream.seek 0,seekorigin.begin for in...
C 檔案操作(向 txt檔案寫入資料)
本文講解的是向.exe同一目錄下的data資料夾下的log.txt寫入資料。假若.exe所在路徑是e projects logout log debug。1.1向上一級目錄指向 表示當前路徑,相當於e projects logout log debug 表示當前路徑的上一級路徑,相當於e proje...