`
iihero
  • 浏览: 257678 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

7zip命令行用法

 
阅读更多
7zip功能很强大,你只要两个文件:
7z.exe以及7z.dll就可以使用命令行工作了。

Usage: 7za <command> [<switches>...] <archive_name> [<file_names>...]
       [<@listfiles...>]

1. "a",添加文件
7z a -t7z files.7z *.txt

2. "d", 删除文件
7z d archive.zip *.bak -r
从zip文件中删除所有的*.bak文件

3. "e", 解压缩
7z e archive.zip

4. "l", 列出文件
7z l archive.zip

5. "t", 测试完整性
7z t archive.zip *.doc -r

6. "u", 更新
7z u archive.zip *.d

7. "x", 与e相同,但保留全路径

8. "m", 指定优化级别
Compression switch: -mx0
What it means:      Don't compress at all.
    Is called "copy mode."

Compression switch: -mx1
What it means:      Very low compression.
    It is called "fastest" mode.

Compression switch: -mx3
What it means:      Fast compression mode.
    Will set various parameters automatically.

Compression switch: -mx5
What it means:      Same as above, but "normal."

Compression switch: -mx7
What it means:      "maximum" compression.

Compression switch: -mx9
What it means:      "ultra" compression.
    (You probably want to use this.)

9. "-m"选项:
Switch:   -mfb
Function: Specifies # of fast bytes.
  Sometimes help with very "sparse" files.
  Don't bother.

Switch:   -mpass
Function: Number of passes for deflate compression.
  Don't bother with this.
  Automatically set with levels.

Switch:   -md
Function: Specifies dictionary size.
  Automatically set, so don't bother.

Switch:   -mmt
Function: Enable multithreading.
  Use if: you have quad-core and a really huge archive.
  Specify "on" or "off".
  This may be enabled by default; check the help file.

10. "-t"选项
指定压缩文件类型
Type switch:      -t7z
Format:           7Z
Example filename: archive.7z (default option)

Type switch:      -tgzip
Format:           GZIP
Example filename: archive.gzip
  archive.gz

Type switch:      -tzip
Format:           ZIP
Example filename: archive.zip (very compatible)

Type switch:      -tbzip2
Format:           BZIP2
Example filename: archive.bzip2

Type switch:      -ttar
Format:           TAR
Example filename: tarball.tar (UNIX and Linux)

Type switch:      -tiso
Format:           ISO
Example filename: image.iso

Type switch:      -tudf
Format:           UDF
Example filename: disk.udf

7z a -tiso archive.iso
7z a -tudf archive.udf

7z:                         executable name
a:                          add to archive
-tiso or -tudf:             format of archive to create
archive.iso or archive.udf: name of archive to create

10. 硬压缩
Switch:   -ms=on
Function: Enable solid mode.
This is the default so you won't often need this.

Switch:   -ms=off
Function: Disable solid mode.
This is useful when you need to update individual files.
Will reduce compression ratios normally.

11. "-p"设定密码
7z a pw.7z *.txt -pSECRET

12. 其它选项:
Switch:   -ssc
Function: Specify case-sensitive mode.
  Useful for going between Linux and Windows.
  Default: -ssc- on Windows (insensitive)
  Default: -scc on Linux (sensitive)


Switch:   -ssw
Function: Compress locked files.
  Use if: you have problems with opening files.

Switch:   -w
Function: Set working directory.
  Use when you want to specify temp folders.

Switch: -aoa
Overwrite all destination files.

Switch: -aos
Skip over existing files without overwriting.
Use this for files where the earliest version is most important.

Switch: -aou
Avoid name collisions.
New files extracted will have a number appending to their names.
(You will have to deal with them later.)

Switch: -aot
Rename existing files.
This will not rename the new files, just the old ones already there.
Use when the new files are more important.

7z x test.zip -aoa

7z:       use the 7-zip executable
x:        use the extract command
test.zip: extract files from this archive
-aoa:     overwrite all existing files. risky!

1
1
分享到:
评论

相关推荐

    7-zip命令行说明(htm文档)

    《7-Zip命令行使用详解》 7-Zip是一款开源且免费的压缩软件,它不仅提供了图形用户界面,还支持命令行模式,适用于自动化处理和批量操作。在本文中,我们将深入探讨7-Zip的命令行用法,帮助你更好地理解和运用这个...

    7-Zip 命令行版本用户手册

    《7-Zip命令行版本用户手册》是一份详细介绍如何在命令行环境中使用7-Zip工具进行文件和文件夹压缩与解压的操作指南。7-Zip是一款开源、免费且功能强大的压缩软件,支持多种压缩格式,包括7z、ZIP、GZIP、BZIP2和TAR...

    7z 命令行版

    7z命令行版是一款强大的文件压缩和解压缩工具,它基于7-Zip软件,但专为在命令行环境中使用而设计。7-Zip是开源软件,支持多种压缩格式,包括其自有的7z格式,该格式以其高压缩率著称。在没有图形用户界面的情况下,...

    绿色版命令行压缩解压缩工具-----7Zip压缩工具

    在这个例子中,`7za a -t7z output.7z input.txt` 是7-Zip命令行的命令,表示将`input.txt`文件压缩成7z格式的`output.7z`文件。 关于7-Zip的更多高级用法,可以参考CSDN博主guanqing527的文章,链接在描述中给出。...

    Windows下的命令行使用的zip命令

    Windows下的命令行使用的zip命令,用法与linux用法一致。 后端程序打包文件调用。 如果你装了windows版的Oracle,那你可以在Oracle\product\11.2.0\dbhome_1\BIN目录下找到该zip命令。

    7-Zip Command line version 9.10

    在提供的压缩包文件中,`7-zip.chm`是一个帮助文件,包含了7-Zip命令行版本的详细使用指南,用户可以通过查阅它来了解各种命令和参数的具体用法。`7za.exe`是7-Zip命令行工具的执行文件,是进行压缩和解压缩操作的...

    ico7Zip.7z

    这种灵活的用法使得ico7Zip成为批量修改7z图标的理想选择。 1. `-d`参数的使用: 使用`.\ico7Zip.exe -d`命令,工具会将当前程序内置的ico文件应用到7z程序上,实现7z图标的基本替换。这一步骤通常适用于用户希望...

    CutyCapt-Win32-2010-04-26.zip 命令行版的网页截图工具

    二、使用方法: 1. **解压与运行**:首先需要将压缩包解压,然后在命令行窗口中定位到"CutyCapt.exe"所在的目录。 2. **基本命令**:最基本的用法是输入`CutyCapt.exe --url=http://example.com --out=screen.png`,...

    p7zip_16.02.zip

    5. **命令行使用**:p7zip提供了丰富的命令行选项,如`7z e`用于解压缩,`7z a`用于压缩,`7z l`用于列出压缩包内容。用户可以根据需求组合使用这些参数。 6. **错误处理**:如果遇到无法解压缩的问题,描述中的...

    开源包7zip压缩工具的编译及使用

    接下来,我们来看7-Zip的具体使用方法: 1. **压缩文件或文件夹**:打开7-Zip,选择“添加到压缩文件”选项,然后在弹出的窗口中选择要压缩的文件或文件夹,设定压缩格式(默认为7z,也可选择其他如ZIP、TAR等),...

    zip.exe,unzip.exe压缩解压工具

    unzip.exe的使用方法如下: 1. 解压缩全部文件:`unzip archive.zip` 2. 解压缩到特定目录:`unzip archive.zip -d target_directory` `-d`参数指定解压后文件的目标位置。 这两个工具的使用不仅可以节省磁盘空间...

    7Zip压缩Demo

    【7Zip压缩Demo】是一个关于使用7-Zip软件进行文件压缩的示例程序。7-Zip是一款免费且开源的压缩工具,它支持多种压缩格式,包括...通过这个Demo,用户将更好地理解和掌握7-Zip的使用方法,提升数据管理和传输的效率。

    Delphi调用7Zip压缩文件

    在IT行业中,有时候我们需要在应用程序中集成压缩和解压缩功能,比如使用Delphi来调用7-Zip这个强大的压缩工具。Delphi是一款流行的Object Pascal编程环境,而7-Zip则是一个开源的压缩软件,它提供了高效率的压缩...

    7zip压缩与解压缩在vc++中调用的例子

    同样地,如果需要解压缩一个名为`bbbb.7z`的文件,我们可以使用类似的方法。首先,获取压缩文件的路径: ```cpp CString sCompressedFile = "E:/bbbb.7z"; ``` 然后,确定解压缩后文件的目标路径: ```cpp ...

    命令行程序转GUI程序Gooey.zip

    Gooey 使用命令行程序来呈现用户,尤其是 rank-and-file 用户是减少其使用的最快方法之一。 Gooey 论证了 argparse 命令行解析库期望的参数,并把它们作为 GUI 形式呈现给用户,所有选项都使用适当的控件(例如多...

    p7zip-9.13-1.el5.rf.x86_64.rpm、p7zip-plugins-9.13-1.el5.rf.x86_64.rpm

    这两个软件包是p7zip工具的组成部分,p7zip是一款强大的命令行压缩和解压缩工具,它是7-Zip的开源版本,支持多种文件格式。 7-Zip是一款广泛使用的文件压缩软件,以其高压缩率和对多种压缩格式的支持而闻名。p7zip...

    7-zip打包工具

    在本文中,我们将深入探讨7-Zip的功能、使用方法以及其在Java环境中的应用。 1. **7-Zip的特点** - **多平台支持**:7-Zip不仅适用于Windows操作系统,还有适用于Linux和macOS的版本,通过命令行工具p7zip。 - **...

    资源名称7ZIP7ZIP

    标签“7ZIP”进一步确认了主题,意味着我们将讨论7-ZIP的特性、用法以及它如何与其他压缩软件相比。 在提供的压缩包子文件中,有两个文件: 1. `7z-iconset-457.exe`: 这个文件名可能表示7-ZIP的一个图标集,版本为...

    Windows.命令行详解手册.zip

    通过深入阅读这本《Windows命令行详解手册》,读者不仅能了解到这些基本命令的用法,还能学会如何组合使用命令以解决实际问题,从而提升对Windows系统的掌控能力。无论你是初级用户还是有经验的系统管理员,都能从中...

Global site tag (gtag.js) - Google Analytics