Delphi中实现文件拷贝的三种方法


本文整理自网络,侵删。

 1.利用Windows API:
CopyFile(lpExistingFileName, lpNewFileName: PChar; bFailIfExists: BOOL): BOOL
 
procedure TFrmMain.Button1Click(Sender: TObject);
var
  sSo: string;
begin
  with TOpenDialog.Create(nildo
  begin
    DefaultExt :'xls';
    Filter :'*.xls';
    try
      if Execute then
        sSo := filename
      else
        exit;
    finally
      free;
    end;
  end;
  //就使用下面一句即可拷贝
  CopyFile(pchar(sSo), pchar('e:/x.xls'), false);
  //最后一参数True表示若存在相同目标文件则不拷贝,False表示无论目标文件是否存在都将覆盖
end;
 
 
2.文件流
function TFrmMain.CopyFile(sSour, sDest: string): Boolean;
var
  fSour, fDest: TFileStream;
begin
  Result := False;
  if not FileExists(sSour) then
    Exit;
  fSour := TFileStream.Create(sSour, fmOpenRead);
  fDest := TFileStream.Create(sDest, fmOpenWrite or fmCreate);
  try
    fDest.CopyFrom(fSour, fSour.Size);
    Result := FileExists(sDest);
  finally
    fDest.Free;
    fSour.Free;
  end;
end;
 
 
3.利用内存块读写buffer实现
procedure TFrmMain.FileCopy(const Fromfile,Tofile:string);
Var
  F1,F2:file;
  NumRead,Numwritten:Longint;
  Buf:array [1..2048] of char;
Begin
  AssignFile(F1,Fromfile);
  Reset(F1,1);
  AssignFile(F2,Tofile);
  Rewrite(F2,1);
  Repeat
    BlockRead(F1,buf,sizeof(buf),NumRead);
    BlockWrite(F2,buf,Numread,NumWritten);
  Until (NumRead=0or (NumWritten<>NumRead);
  CloseFile(F1);
  CloseFile(F2);
End;

相关阅读 >>

Delphi中转向语句break,continue,exit的作用

Delphi 取当前目录下所有文件夹名和文件名

Delphi windows服务控制单元

Delphi 检查屏幕是否处于锁屏或关闭状态

Delphi6-xe5 中的md5实现方法

Delphi+汇编例子

Delphi 获取计算机串口列表

Delphi tpath

Delphi图片上写水印文字函数

Delphi 深入了解unigui hyperserver

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...

    正在狠努力加载,请稍候...