码迷,mamicode.com
首页 > 编程语言 > 详细

VC++ CopyFile函数使用方法

时间:2015-02-07 10:16:26      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

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);  

VC++ CopyFile函数使用方法

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/4278379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!