C/C++|CopyFile文件的使用

首先是CopyFile的文件原型: BOOL CopyFile( LPCTSTRlpExistingFileName,// pointer to name of anexisting file,指向一个源文件名 LPCTSTR lpNewFileName, // pointer to filename to copyto,指向一个目的文件名 BOOL bFailIfExists// flag foroperation if file exists, ); 针对对三个参数说明: BOOLbFailIfExists文件操作标志。 指明如果在目的路径存在文件时是否覆盖。 如果设为TRUE(非零),将不覆盖已经存在的文件;如果存在,则返回失败。


程序代码: #include #include
int main() {//前提是现在当前工程目录下新建文件1.txt, char g_fileName[] = "1.txt"; char cFileName[] = "2.txt"; if (0 == CopyFile(g_fileName, cFileName,FALSE)) { printf("文件复制失败!\n"); } printf("文件复制成功\n"); return 0; }
最后就会复制一个和1.txt文件内容完全一样的文件2.txt。

    推荐阅读