快速複製大檔案 多個檔案

2021-08-03 13:54:41 字數 1035 閱讀 4391

之前寫過乙個copy檔案的方法,30多m要複製1分多鐘.......想死,現在忘記了那個方法。只有下面這個方法

快速複製大檔案、多個檔案(包含資料夾):

public static void copyfile(file file, string dest)

}private static void copy(string src, string dest)

if (filedir.mkdirs())

copyfile(file, filedir.getabsolutepath());

} else

}} catch (exception e) finally

if (reader != null)

reader.close();

} catch (ioexception e) }}

測試類:

public class test

public static void copyfile()

system.out.println("time = "

+ (system.currenttimemillis() - millisread) + "ms; 共:"

+ list.length + "個檔案");

}public static void copyfile(file file, string dest)

}private static void copy(string src, string dest)

if (filedir.mkdirs())

copyfile(file, filedir.getabsolutepath());

} else

}} catch (exception e) finally

if (reader != null)

reader.close();

} catch (ioexception e) }}

利用TFileStream快速複製檔案

procedure copyfile sourcefile,destfile string varsf,df tfilestream begin sf tfilestream.create sourcefile,fmopenread 建立原始檔流 trydf tfilestream.create d...

快速複製表

快速建立表 原理 將乙個查詢結果當做一張表新建 完成表的快速複製。create table emp2 as select from emp create table mytable as select empno,ename from emp where job manager 可以查詢一列建立新錶...

原創 檔案系統 目錄檔案快速複製轉移工具

最近因為公司圖文伺服器空間緊張,需要將備份目錄下的所有檔案按照目錄結構全部轉移,但是原位址的目錄結構保持不變,在網上搜尋無果的情況下,決定自己動手製作乙個 ui畫面 主要用到的命名空間 步驟詳解 1 迴圈來源目錄的所有目錄及檔案,重點取得需要轉移的檔案數,以便下一步初始化列舉數 2 迴圈來源目錄的所...