windows命令行解压压缩包
时间: 2023-07-05 13:28:49 浏览: 1811
Windows命令行压缩解压缩工具
4星 · 用户满意度95%
可以使用以下命令行工具来解压和压缩文件:
1. 解压缩文件:
使用Windows自带的解压缩工具powershell:
```
Expand-Archive -LiteralPath "C:\path\to\file.zip" -DestinationPath "C:\path\to\destination"
```
或者使用7-Zip命令行工具:
```
7z x "C:\path\to\file.zip" -o"C:\path\to\destination"
```
2. 压缩文件:
使用Windows自带的压缩工具powershell:
```
Compress-Archive -LiteralPath "C:\path\to\folder" -DestinationPath "C:\path\to\compressed.zip"
```
或者使用7-Zip命令行工具:
```
7z a "C:\path\to\compressed.zip" "C:\path\to\folder"
```
阅读全文