delphi xe android 使用System.Zip单元释放资源文件


本文整理自网络,侵删。

 

System.Zip.pas

 

var

  zip: TZipFile;

begin

  zip := TZipFile.Create;

  zip.Open(TPath.GetDocumentsPath + PathDelim +'txt.zip', TZipMode.zmRead);

  zip.ExtractAll(TPath.GetDocumentsPath + PathDelim);

  zip.Free;

 

注意:应用权限选对

相关阅读 >>

Delphi 10.3 控件遮挡 webbrowser

Delphi unigui日志的控制

Delphi将文件删除至回收站

Delphi 关闭指定窗口

Delphi byte数组根据utf8 转换为string

Delphi 最快字符串查找(匹配)算法

Delphi idhttp1 xmlpost

Delphi 使用onvalidate事件或onvalidating事件验证在输入字段(tedit)中输入的值

Delphi禁止在android上重复按下按钮

Delphi 制作放两个小图片的按钮

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



打赏

取消

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

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

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

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

评论

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