📜  powershell decompress zip - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:03:51.147000             🧑  作者: Mango

PowerShell 压缩解压缩 zip 文件

PowerShell 是一种命令行工具,它可以用于处理许多不同的任务。其中之一是压缩和解压缩 zip 文件。在本文中,我们将介绍如何使用 PowerShell 命令行来压缩和解压缩 zip 文件。

压缩文件

要压缩文件,请使用以下命令:

Compress-Archive -Path "source_file_path" -DestinationPath "destination_file_path.zip"

其中,“source_file_path”是要压缩的文件的路径,“destination_file_path.zip”是要生成的 zip 文件的路径。

例如,要将“C:\test\example.txt”压缩到“C:\test\example.zip”中,请使用以下命令:

Compress-Archive -Path "C:\test\example.txt" -DestinationPath "C:\test\example.zip"
解压文件

要解压缩文件,请使用以下命令:

Expand-Archive -Path "source_file_path.zip" -DestinationPath "destination_folder_path"

其中,“source_file_path.zip”是要解压缩的 zip 文件的路径,“destination_folder_path”是要提取文件的目标文件夹的路径。

例如,要将“C:\test\example.zip”中的文件提取到“C:\test\example”中,请使用以下命令:

Expand-Archive -Path "C:\test\example.zip" -DestinationPath "C:\test\example"

在上面的命令中,如果未提供“-DestinationPath”参数,则文件将被提取到当前目录中。

由于 PowerShell 是跨平台的,因此可以在 Windows、Linux 和 macOS 上使用上述命令。

总结:PowerShell 提供了压缩和解压缩 zip 文件的便利方法。上述命令是在 PowerShell 中执行此操作的简单方法。