C 實現複製資料夾中檔案到另乙個資料夾的方法

2021-09-19 08:53:13 字數 511 閱讀 5001

private void copydir(string srcpath, string aimpath)

// 判斷目標目錄是否存在如果不存在則新建

if (!system.io.directory.exists(aimpath))

// 得到源目錄的檔案列表,該裡面是包含檔案以及目錄路徑的乙個陣列

// 如果你指向copy目標檔案下面的檔案而不包含目錄請使用下面的方法

// string filelist = directory.getfiles(srcpath);

string filelist = system.io.directory.getfilesystementries(srcpath);

// 遍歷所有的檔案和目錄

foreach (string file in filelist)

// 否則直接copy檔案

else}}

catch (exception e)

}

C 將資料夾中檔案複製到另乙個資料夾

c 將資料夾中檔案複製到另乙個資料夾 新建乙個資料夾 var imgpath directory.getcurrentdirectory devicepic1 if directory.exists imgpath var a picpath 需要進行複製的的路徑 var b a.substring...

C 複製資料夾下的所有內容到另乙個資料夾

利用遞迴思想對源資料夾進行遍歷,並複製檔案到另乙個資料夾,如果出現重名則覆蓋。using system using system.collections.generic using system.linq using system.text using system.threading.tasks ...

C 把乙個資料夾下所有檔案複製到另乙個資料夾下

c 把乙個資料夾下所有檔案複製到另乙個資料夾下 public static void copydirectory string srcpath,string destpath copydir i.fullname,destpath i.name 遞迴呼叫複製子資料夾 else catch excep...