檔案讀寫操作

2021-10-03 15:28:15 字數 1137 閱讀 9512

class program

file2.moveto("my1.text");

file.delete();

}console.readkey();

}}

class program

console.writeline(directory.name);//得到目錄名

console.writeline(directory.root);//得到目錄根節點(即為所在碟符)

console.writeline(directory.parent);//的到上一級目錄名

console.writeline(directory.creationtime);//得到目錄的建立時間,建立馬上檢視時會讀取錯誤?

directory.createsubdirectory("test2");//在該目錄下建立子目錄

console.readkey();

}}

static void main(string args)

console.readkey();

file.writeallbytes("b#.png", data);//寫檔案根據位元組

console.readkey();

file.writealllines("line.txt", new string );//寫檔案根據分行字串

string line = file.readalllines("line.txt");//讀檔案根據分行字串

foreach (var i in line)

console.readkey();

file.writealltext("text.txt", "我是text");//寫檔案不分行字串

string text = file.readalltext("text.txt");//讀檔案部分行字串

console.writeline(text);

console.readkey();

}}

static void main(string args)

else

}console.readkey();

}}

檔案操作 讀寫檔案

對檔案的讀寫操作應該是最重要的檔案操作,system.io命名空間提供了諸多檔案讀寫操作類,對檔案內容進行操作常見有3種方式 文字模式 二進位制模式以及非同步模式。1 文字模式 streamreader 和streamwriter類提供了按文字模式讀寫資料的方法。1.1 streamreader 類...

讀寫檔案操作

匯入領導簡歷資訊 return public string leaderresumeimport throws ioexceptionelse if fr null fr.close if flag else fw.close string sjson outputclient sjson retu...

檔案讀寫操作

函式原型 file fopen const char filename,const char mode 返回值 檔案順利開啟後,指向該流的檔案指標就會被返回。如果檔案開啟失敗則返回null,並把錯誤 存在errno中 引數 mode 說明 r read,已唯讀方式開啟檔案,檔案必須存在 w writ...