1:建立資料夾用到是directoryinfo類的create()方法;
如:string name = txtname.text;
string path = @"d:\programe files" + name;
directoryinfo directoryinfo = new directoryinfo(path);
if(directoryinfo.exist)
else
{directoryinfo.create();
messagebox.show("資料夾建立成功");
注意:如果directoryinfo directoryinfo = new directoryinfo(path);
改為directoryinfo directoryinfo = new directoryinfo(name);則建立在工程下的debug目錄下。
還可以用directoryinfo.delete()方法刪除資料夾,directoryinfo.moveto()方法移動資料夾,directoryinfo.getallfiles()方法遍歷資料夾中的所有檔案。
2:建立文應用的是file類的create()靜態方法;
如:string name = txtname.text;
string path = @"d:\programe files" + name;
file.create(path); 則在制定位置建立了名字為name的檔案;
注意:可以呼叫file.delete(path)刪除檔案,file.copy(path,newpath)拷貝檔案;
3:獲取檔案的基本資訊是用fileinfo 類來對映檔案;
如:fileinfo fileinfo = new fileinfo(path);可以通過fileinfo來獲取檔案基本資訊;
拷貝檔案 資料夾 建立資料夾 刪除資料夾操作
qt拷貝檔案 資料夾 建立資料夾 刪除資料夾操作 cpp view plain copy brief 拷貝檔案到目的資料夾 param srcfilename 原始檔全路徑,比如 f tx wwxx.txt f tx des desd param desfilepathname 要copy到的目的路...
資料夾操作
建立資料夾 char buf 256 getcurrentdirectory 256,buf 獲取程式根目錄路徑 m name.getwindowtext name strcat buf,strcat buf,name createdirectory buf,null 刪除資料夾 char buf ...
檔案(夾)操作
對檔案和資料夾操作的類 1.fileinfo具體檔案,使用此類的物件,可以獲得問價大小等各種資訊 繼承自filesysteminfo 建立物件,fileinfo fi new fileinfo 常用屬性 name 檔名稱 extension 副檔名 fullname 檔案完全路徑 物理路徑 leng...