C 檔案操作目錄手冊

2021-08-10 02:57:39 字數 748 閱讀 6625

需要 using system.io;

4) 檔案是否存在

file.exists(filefullname)

5) 目錄是否存在

directory.exists(fullfolder))

6) 建立目錄

directory.createdirectory(fullfolder);

7) 目錄移動

directory.move

8) 讀取文字檔案

streamreader srd = file.opentext(fullfilename);

srd.readtoend();

srd.close();

srd.dispose();

10)刪除檔案

// 刪除硬碟上的檔案

if (file.exists(filefullname))

11)目錄遍歷

public void listfiles(string pathname)

// 所有檔案

foreach (string subfile in subfiles)

}12)檔案修改時間

fileinfo fi = new fileinfo(@"c:\test.txt");

datetime writetime = fi.lastwritetime;

13)從含路徑的檔名中提取檔名

system.io.path.getfilename(fullpath);//檔名

C 檔案目錄操作完全手冊

需要 using system.io 4 檔案是否存在 file.exists filefullname 5 目錄是否存在 directory.exists fullfolder 6 建立目錄 directory.createdirectory fullfolder 7 目錄移動 directory...

C 操作目錄和檔案

1 通過path類的combine方法可以合併路徑。string activedir c mydir string newpath system.io.path.combine activedir,mysubdirone 2 目錄的建立。建立目錄時如果目錄已存在,則不會重新建立目錄,且不會報錯。建立...

C 操作目錄和檔案

1 通過path類的combine方法可以合併路徑。string activedir c mydir string newpath system.io.path.combine activedir,mysubdirone 2 目錄的建立。建立目錄時如果目錄已存在,則不會重新建立目錄,且不會報錯。建立...