C 資料夾和檔案操作

2022-04-29 18:09:09 字數 772 閱讀 4954

file.exist(string   path)

//檔案讀寫

filestream fs=new filestream(filename, filemode.create);

binarywriter bw=new binarywriter(fs);

bw.write("ok");

bw.flush();

bw.close();

fs.close();

if(!directory.exists(spath))

c#遍歷指定資料夾

directoryinfo thefolder=new directoryinfo(folderfullname);

//遍歷資料夾

foreach(directoryinfo nextfolder in thefolder.getdirectories())

this.listbox1.items.add(nextfolder.name);

//遍歷檔案

foreach(fileinfo nextfile in thefolder.getfiles())

this.listbox2.items.add(nextfile.name);

//遍歷檔案或者資料夾

directoryinfo. getfilesysteminfos():獲取指定目錄下(不包含子目錄)的檔案和子目錄,返回型別為filesysteminfo,支援萬用字元查詢;

(C )檔案操作 解壓資料夾和檔案

using icsharpcode.sharpziplib.zip using system.io using icsharpcode.sharpziplib.checksums namespace datareportedfeedback if filename string.empty else...

C 檔案和資料夾

獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。返回上一級路徑 是你返回的資料夾級數 string parentpath di.fullname 判斷檔案是否存在 if system.io.file.exists parentpath directory.exists path pat...

python檔案和資料夾操作

python中對檔案 資料夾 檔案操作函式 的操作需要涉及到os模組和shutil模組。得到當前工作目錄,即當前python指令碼工作的目錄路徑 os.getcwd 返回指定目錄下的所有檔案和目錄名 os.listdir 函式用來刪除乙個檔案 os.remove 刪除多個目錄 os.removedi...