✔ 最佳答案
如果對象平台是 Windows 的話用 Windows API 最好:
definition:
BOOL CopyFile(
LPCTSTR lpExistingFileName, // pointer to name of an existing file
LPCTSTR lpNewFileName, // pointer to filename to copy to
BOOL bFailIfExists // flag for operation if file exists
);
Header: Declared in winbase.h.
Import Library: Use kernel32.lib.
當然要用 Visual C++ 來 compile 和 Link.
2007-10-30 01:38:50 補充:
要 copy 成個 folder 的話使用 FindFirstFile 和 FindNextFile 來列舉 folder 裡的 files (如 folder 裡還有 folder 要寫一個 recursive function)
2007-10-30 01:40:11 補充:
用 Windows API 速度最快