架构师_程序员_码农网

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 4872|回复: 2

[资料] 【实战】.NET/C# 通过命令行调用 7z 解压缩

[复制链接]
发表于 2022-4-30 17:46:24 | 显示全部楼层 |阅读模式
需求:项目需要对上传的压缩包进行解压或者压缩操作,一般可以通过 WinRAR 可以实现,但是我们要使用编程的方式去实现,不可能手动去解压缩文件。由于 WinRAR 是收费的,可以使用 .NET/C# 通过执行命令行操作来调用 7z 实现我们的需求。

回顾:

.net/c# 获取zip压缩包里面的文件信息
https://www.itsvse.com/thread-4831-1-1.html

Java 封装zip解压缩方法
https://www.itsvse.com/thread-7750-1-1.html

c#用ICSharpCode.SharpZipLib.dll实现文件/文件夹压缩、解压缩
https://www.itsvse.com/thread-3726-1-1.html
7-Zip 是一个具有高压缩率的文件归档器。7-Zip是开源的免费软件。大部分代码都在GNU LGPL许可下。代码的某些部分在 BSD 3 条款许可下。代码的某些部分也有 unRAR 许可限制。

下载地址:https://www.7-zip.org/,下载安装步骤略(本文安装到了:D:\360Downloads 目录下面)

7-Zip 命令行参数如下:


7-Zip 21.07 (x64) : Copyright (c) 1999-2021 Igor Pavlov : 2021-12-26

Usage: 7z <command> [<switches>...] <archive_name> [<file_names>...] [@listfile]

<Commands>
  a : Add files to archive
  b : Benchmark
  d : Delete files from archive
  e : Extract files from archive (without using directory names)
  h : Calculate hash values for files
  i : Show information about supported formats
  l : List contents of archive
  rn : Rename files in archive
  t : Test integrity of archive
  u : Update files to archive
  x : eXtract files with full paths

<Switches>
  -- : Stop switches and @listfile parsing
  -ai[r[-|0]]{@listfile|!wildcard} : Include archives
  -ax[r[-|0]]{@listfile|!wildcard} : eXclude archives
  -ao{a|s|t|u} : set Overwrite mode
  -an : disable archive_name field
  -bb[0-3] : set output log level
  -bd : disable progress indicator
  -bs{o|e|p}{0|1|2} : set output stream for output/error/progress line
  -bt : show execution time statistics
  -i[r[-|0]]{@listfile|!wildcard} : Include filenames
  -m{Parameters} : set compression Method
    -mmt[N] : set number of CPU threads
    -mx[N] : set compression level: -mx1 (fastest) ... -mx9 (ultra)
  -o{Directory} : set Output directory
  -p{Password} : set Password
  -r[-|0] : Recurse subdirectories for name search
  -sa{a|e|s} : set Archive name mode
  -scc{UTF-8|WIN|DOS} : set charset for for console input/output
  -scs{UTF-8|UTF-16LE|UTF-16BE|WIN|DOS|{id}} : set charset for list files
  -scrc[CRC32|CRC64|SHA1|SHA256|*] : set hash function for x, e, h commands
  -sdel : delete files after compression
  -seml[.] : send archive by email
  -sfx[{name}] : Create SFX archive
  -si[{name}] : read data from stdin
  -slp : set Large Pages mode
  -slt : show technical information for l (List) command
  -snh : store hard links as links
  -snl : store symbolic links as links
  -sni : store NT security information
  -sns[-] : store NTFS alternate streams
  -so : write data to stdout
  -spd : disable wildcard matching for file names
  -spe : eliminate duplication of root folder for extract command
  -spf : use fully qualified file paths
  -ssc[-] : set sensitive case mode
  -sse : stop archive creating, if it can't open some input file
  -ssp : do not change Last Access Time of source files while archiving
  -ssw : compress shared files
  -stl : set archive timestamp from the most recently modified file
  -stm{HexMask} : set CPU thread affinity mask (hexadecimal number)
  -stx{Type} : exclude archive type
  -t{Type} : Set type of archive
  -u[-][p#][q#][r#][x#][y#][z#][!newArchiveName] : Update options
  -v{Size}[b|k|m|g] : Create volumes
  -w[{path}] : assign Work directory. Empty path means a temporary directory
  -x[r[-|0]]{@listfile|!wildcard} : eXclude filenames
  -y : assume Yes on all queries
使用 7z 压缩文件夹

命令如下:


由于增加了 -sdel 参数,压缩完成后会自动将 zh 文件夹删除。我们使用 WinRAR 测试一下压缩后的文件,如下图:

QQ截图20220430172807.jpg

使用 7z 解压文件

命令如下:


解压完成如下图:

QQ截图20220430174440.jpg

.NET/C# 通过命令行调用 7z 解压缩

如何使用 .NET/C# 代码执行命令行呢?代码如下:

(完)




上一篇:65 个源码下载网站
下一篇:【实战】.NET/C# 给方法设置超时时间
码农网,只发表在实践过程中,遇到的技术难题,不误导他人。
 楼主| 发表于 2022-4-30 17:49:29 | 显示全部楼层
e 解压文件(所有压缩文件解压到同一目录,不保持原目录结构)
# 解压文件到当前目录
7z e archive.zip
# 解压文件到 e:\testunzip目录下
7z e archive.zip -oe:\testunzip
# 解压所有的 png文件到 e:\testunzip目录下
7z e archive.zip -oe:\testunzip *.png -r

x 解压文件(保持原目录结构)
# 解压文件到当前目录
7z x archive.zip
# 解压文件到 e:\testunzip目录下
7z x archive.zip -oe:\testunzip
# 解压所有的 png文件到 e:\testunzip目录下
7z x archive.zip -oe:\testunzip *.png -r

l 查看压缩包内所有文件列表
7z l archive.zip

-ao 同名文件处理方式
# -aoa 覆盖同名文件
7z x archive.zip -aoa
# -aos 跳过同名文件
# -aou 重命名同名的压缩包内文件
# -aot 重命名同名的解压目录的文件

d 删除压缩包内的文件
# 删除archive.zip内所有的.bak后缀的文件
7z d archive.zip *.bak -r

rn 重命名压缩包内的文件
# 重命名文件1.png为1_new.png 2.png为folder\2_new.png
7z rn archive.7z 1.png 1_new.png 2.png folder\2_new.png
码农网,只发表在实践过程中,遇到的技术难题,不误导他人。
发表于 2022-4-30 20:05:18 | 显示全部楼层
学习学习。。
码农网,只发表在实践过程中,遇到的技术难题,不误导他人。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

免责声明:
码农网所发布的一切软件、编程资料或者文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如有侵权请邮件与我们联系处理。

Mail To:help@itsvse.com

QQ|手机版|小黑屋|架构师 ( 鲁ICP备14021824号-2 )|网站地图

GMT+8, 2024-4-25 20:59

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表