本文整理自网络,侵删。
procedure TForm1.Button1Click(Sender: TObject);beginVCLUnZip1.ZipName:=ExtractFilePath(ParamStr(0))+'abc.zip';VCLUnZip1.ReadZip;VCLUnZip1.DestDir:=ExtractFilePath(ParamStr(0));VCLUnZip1.RecreateDirs:=True;//是否创建子目录VCLUnZip1.DoAll := True;VCLUnZip1.OverwriteMode := Always;VCLUnZip1.Password := '';VCLUnZip1.UnZip;end;
procedure TForm1.VCLUnZip1TotalPercentDone(Sender: TObject; Percent: Integer);beginProgressBar1.Position:=Percent;end;
相关阅读 >>
Delphi之tclientsocket和tserversocket使用tcp keepalive心跳机制实现“断网”、"断电"检测
Delphi twebbrowser与嵌入youtube视频崩溃
更多相关阅读请进入《Delphi》频道 >>