directory類是乙個靜態類,它只包含多個靜態方法,用來建立、移動、列舉目錄和子目錄。其中,常用的靜態方法具體說明如表所示。
表directory類的常用靜態方法表
方 法
說 明
createdirectory()
建立指定路徑的目錄
delete()
刪除指定的目錄
續表方 法
說 明
exists()
判斷指定路徑的目錄是否存在如果存在,返回true,否則返回false
move()
將指定檔案或目錄及其內容移到新位置
getparent()
獲取指定路徑的父目錄,返回是directoryinfo型別
getcurrentdirectory()
獲取應用程式的當前工作目錄,軟體執行的目錄路徑
setcurrentdirectory()
設定應用程式的當前工作目錄
getdirectories()
獲取指定目錄中子目錄
getdirectoryroot()
獲取指定路徑的卷資訊或根資訊
getfiles()
獲取指定目錄中的檔案
getfilesystementries()
獲取指定目錄中所有檔案和子目錄
getlogicaldrives()
獲取當前計算機上的邏輯驅動器
getcreati/ontime()
獲取目錄的建立日期和時間
setcreati/ontime()
設定指定的檔案或目錄的建立日期和時間
getlastaccesstime()
獲取上次訪問指定檔案或目錄的日期和時間
setlastaccesstime()
設定上次訪問指定檔案或目錄的日期和時間
getlastwritetime()
獲取上次寫入指定檔案或目錄的日期和時間
setlastwritetime()
設定上次寫入目錄的日期和時間
其中,createdirectory()、delete()和move()方法用來操作目錄,它們依次可以用來建立、刪除和移動目錄。move()方法用來移動目錄,它首先建立乙個新目錄(包括該目錄的內容),然後再將被移動的目錄刪除。
C 中資料夾類Directory的常用操作
主要功能是操作資料夾,命名空間system.io,靜態類,下面介紹一下常用函式 directory.createdirectory d 2 directory.delete d 1 如果該資料夾是非空的,需要加上乙個引數 directory.delete d 1 true for int i 0 i...
C 資料夾操作
去除字尾 獲取string最後乙個乙個字元 void main 讀取資料夾中所有檔名 include include include 忘了這個cout就無法輸出string型別。include include finddata t,findfirst,findnext,findclose要用 usi...
C 資料夾操作
author ricard.m.tan createtime 2020 4 2 11 52 41 using system.io using system.windows.forms using system.xml namespace chngz.paradise 複製檔案 public stat...