他们说的没有错啊,<br>BOOL CopyFile(<br><br> LPCTSTR lpExistingFileName, // pointer to name of an existing file <br> LPCTSTR lpNewFileName, // pointer to filename to copy to <br> BOOL bFailIfExists // flag for operation if file exists <br> <br>是个API函数啊,例如,你可以这样使用,<br> CopyFile(pchar('d:/111/aaa.txt'),pchar('d:/222/bbb.txt'),false);<br><br>