码迷,mamicode.com
首页 > Windows程序 > 详细

WinAPI: CopyFile - 复制文件

时间:2014-05-09 03:47:31      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:style   color   c   strong   string   文件   

//声明:
CopyFile(
  lpExistingFileName: PChar; {源文件}
  lpNewFileName: PChar;	     {目标文件}
  bFailIfExists: BOOL        {如果目标文件存在, True: 失败; False: 覆盖}
): BOOL;

//例1:
begin
  CopyFile(‘c:\BOOTLOG.TXT‘, ‘c:\temp\BOOTLOG.TXT‘, True);
end;

//例2:
var
  ExistFile, NewFile: string;
begin
  ExistFile := ‘c:\BOOTLOG.TXT‘;
  NewFile   := ‘c:\temp\BOOTLOG.TXT‘;

  if CopyFile(PChar(ExistFile), PChar(NewFile), True) then
    ShowMessage(‘复制成功‘);
end;

WinAPI: CopyFile - 复制文件,布布扣,bubuko.com

WinAPI: CopyFile - 复制文件

标签:style   color   c   strong   string   文件   

原文地址:http://www.cnblogs.com/azhqiang/p/3716364.html

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