C 檔案和資料夾建立與刪除

2021-05-26 05:15:22 字數 737 閱讀 2873

結合自己最近寫程式的心得,說一下c#檔案和資料夾的建立與刪除。

介紹兩種方法:

例如:directoryinfo filefolder = new

directoryinfo("d://my"); 

if (filefolder .exists)

messagebox.show("資料夾存在");

if(directory.exists("d://my"))

messagebox.show("資料夾存在");

這裡列舉最常見的一種:

從指定路徑刪除空目錄:directory.delete

(sring);

刪除指定的目錄和該目錄下的任何子目錄:diretory.delete(string,boolean);布林型變數是true時全部刪除。

舉例如下:

string filepath = "d//my";

if(file.exists(filepath))

//存在

個人感覺:遇到問題時去找問題解決的方法,的確是一種高效的解決問題的方式。但是,就知識完整性而言,還是系統的學習相關知識最佳。例如,在此我們可以好好學習一下directoryinfo 類和diretory類,這樣對檔案的相關操作就會十分熟練。

Linux建立 刪除 檔案和資料夾

linux建立 刪除 檔案和資料夾 1 建立檔案 touch 檔名 例項如下 touch paras.txt 在當前目錄下建立檔案paras.txt touch a b c paras.txt 在已存在目錄下 a b c 下建立檔案paras.txt 2 建立資料夾 mkdir option dir...

Linux建立刪除檔案和資料夾

要想刪除和建立,需要有root許可權 xwg bogon su root 密碼 root bogon xwg cd home a 切換到目錄a root bogon a touch d 在目錄a下建立b檔案 root bogon a rm f d 刪除目錄a下的b檔案 root bogon a mk...

刪除檔案和資料夾

一 刪除檔案 使用 del 命令,可以檢視幫助資訊 del p f s q a attributes names erase p f s q a attributes names names 指定乙個或數個檔案或目錄列表。萬用字元可被用來 刪除多個檔案。如果指定了乙個目錄,目錄中的所 有檔案都會被刪...