git tortoisegit使用,tortoisegit revert

  git tortoisegit使用,tortoisegit revert

  2019独角兽企业重金招聘python(python语言)工程师标准

  阅读目录美元

  一SSZipArchive 1。简介2.压缩方法3.解压方法二ZipArchive 1。简介2.压缩方法3.解压方法回到顶部

  一SSZipArchive

  1.简介SSZipArchive文件是去吧和麦克!麦克上一个简单实用的压缩和解压插件。用途包括:

  1.解压拉链文件;

  2.解压密码保护的拉链文件;

  3.创建新的拉链文件;

  4.追加文件到现有的压缩;

  5.压缩文件;

  6.压缩NSData(带有文件名)

  SSZipArchive文件的吉卜赛人地址:339 github。com/zip存档/zip存档

  2.压缩方法压缩指定文件代码:

  1 /** 2 * SSZipArchive压缩3 */4 -(请参阅)具有文件5 { 6//缓存的ssziparchive路径7 nsr string * cache path=[nsearchpathforindimanes(nscachedirectory,nsuserdomainmask,yes)lastobject];8 //zip压缩包保存路径9 ns string * path=[cache path stringbyappendingpathcomponent:@ sszip archive。zip ];10 //需要压缩的文件11 nsaarray *文件路径=@[12 @ /users/apple/desktop/demo/launch image-2-700-568h @ 2x。png ,13 @ /用户/苹果/桌面/演示/启动图像-2-700 @ 2x。png ,14 @ /用户/苹果/桌面/演示/启动图像-2-800-667h @ 2x。png ,15 @ /用户/苹果/桌面/演示/启动图片-2-800-横向-736h @ 3x。png ;17 //创建不带密码拉链压缩包18 bool issue access=[sszip archive createzipfiletpath:path with files at paths:file path];19 //创建带密码拉链压缩包20//bool is access=[sszip archive createzipfiletpath:path with files at paths:file path with password:@ sszip archive。zip ];21 }

  压缩指定文件夹代码:

  1 /** 2 * SSZipArchive压缩3 */4 -(请参阅)ssziparchive,带文件夹5 { 6//缓存路径7 nsr string * cache path=[nsearchpathforindimanes(nscachedirectory,nsuserdomainmask,yes)lastobject];8 //zip压缩包保存路径9 ns string * path=[cache path stringbyappendingpathcomponent:@ sszip archive。zip ];10 //需要压缩的文件夹路径11 nsstring *文件夹路径=@ /users/apple/desktop/demo/;12 //创建不带密码拉链压缩包13 bool issue access=[sszip archive createzipfiletpath:path with contentsofsdirectory:folder path];14 //创建带密码拉链压缩包15//bool issue access=[sszip archive createzipfiletpath:path with contents ows directory:folderpath with password:@ sszip archive。zip ];16 }

  3.解压方法代码:

  1 /** 2 * SSZipArchive解压3 */4 -(请参阅)uszip archive 5 { 6//缓存路径7 nsr string * cache path=[nsearchpathforindimanes(nscachedirectory,nsuserdomainmask,yes)lastobject];8 //解压目标路径9 ns string * destination path=[cache path stringbyappendingpathcomponent:@ sszip archive ];10//零压缩包的路径11 ns string * path=[cache path stringbyappendingpathcomponent:@ sszip archive。zip ];12 //解压13 bool issue access=[sszip archive unzippfietpath:死亡路径:目标路径];14 }

  回到顶部

  二ZipArchive

  1.简介zip存档(zip归档)可以解压和压缩

  2.压缩方法代码:

  1/* * 2 * zip封存档压缩3 */4 -(请参阅)zipArchiveWithFiles 5 { 6 //创建解压缩对象7 zip archive * zip=[[zip archive alloc]init];8//快取记忆体路径9 nsr string * cache path=[nsearchpathforindimanes(nscachedirectory,nsuserdomainmask,yes)lastobject];10//零压缩包保存路径11 ns string * path=[cache path stringbyappendingpathcomponent:@ zip archive。zip ];//创建不带密码拉链压缩包12 //创建拉链压缩包13[zip createzipfile 2:path];14 //创建带密码拉链压缩包15/[zip createzipfile 2:路径密码:@ zip存档。zip ];16 //添加到拉链压缩包的文件17[zip addfiletozp:@ /users/apple/desktop/demo/launch image-2-700-568h @ 2x。png newname:@ 1。png ];18[zip addfiletozp:@ /users/apple/desktop/demo/launch image-2-700 @ 2x。png newname:@ 2。png ];19[zip addfiletozp:@ /users/apple/desktop/demo/launch image-2-800-667h @ 2x。png 新名称:@ 3。png ];20[zip addfiletozp:@ /users/apple/desktop/demo/launch image-2-800-landscape-736h @ 3x。png newname:@ 4。png ];21 //关闭压缩22布尔成功=[zip close pfii];23 }

  3.解压方法代码:

  1/* * 2 * zip封存档解压3 */4 -(请参阅)乌兹帕切夫5 { 6 //创建解压缩对象7 zip archive * zip=[[zip archive alloc]init];8//快取记忆体路径9 nsr string * cache path=[nsearchpathforindimanes(nscachedirectory,nsuserdomainmask,yes)lastobject];10 //解压目标路径11 ns string * save path=[cache path stringbyappendingpathcomponent:@ zip archive ];12 //zip压缩包的路径13 ns string * path=[cache path stringbyappendingpathcomponent:@ zip archive。zip ];14 //解压不带密码压缩包15 [zip解压缩:路径];16 //解压带密码压缩包17/[zip解压缩:路径密码:@ zip存档。zip ];18 //解压19[zip解压勒托:保存路径覆盖:是];20 //关闭解压21 BOOL成功=[zip未压缩文件];22 }转载于页:1

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

相关文章阅读

  • git提交代码操作,git怎么提交代码
  • git提交代码操作,git怎么提交代码,利用git提交代码的方法步骤
  • git安装教程 安装配置,如何搭建git环境
  • git安装教程 安装配置,git安装与环境变量配置,Git下载、安装与环境配置的详细教程
  • git修改commit内容,git commit信息修改
  • git修改commit内容,git commit信息修改,详解git commit --amend 用法
  • git代码服务器,git版本命令
  • git代码服务器,git版本命令,Git版本控制服务器详解
  • git下载太慢怎么办,解决git下载很慢的问题
  • git下载太慢怎么办,解决git下载很慢的问题,git详细安装教程及下载太慢的解决办法
  • git 设置忽略文件,git修改gitignore不生效
  • git 设置忽略文件,git修改gitignore不生效,git设置忽略文件.gitignore的方法
  • ,,详解Git合并分支的流程步骤
  • ,,使用git命令上传代码
  • ,,Git恢复之前版本的两种方法reset、revert(图文详解)
  • 留言与评论(共有 条评论)
       
    验证码: