zl程序教程

您现在的位置是:首页 >  后端

当前栏目

VC++ CopyFile函数使用方法

C++方法 函数 使用
2023-09-14 09:10:22 时间
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
);
当中各參数的意义:
LPCTSTR lpExistingFileName, // 你要拷贝的源文件名称
LPCTSTR lpNewFileName, // 你要拷贝的目标文件名称
BOOL bFailIfExists // 假设目标已经存在,不拷贝(True)并返回False,覆盖目标(false)

如:
//复制文件c:\log.txt到d:\log.txt,假设D:\log.txt已经存在,就覆盖
CopyFile("c:\\log.txt","d:\\log.txt",false);