.zst 文件解压缩
.zst
是 facebook 推出的一种新型压缩方式,压缩率更大速度更快,这里介绍一下 Windows 下怎么解压缩 .zst
文件。
下载 Zstandard 解压软件
Zstandard 发布在 github 上,地址:https://github.com/facebook/zstd 点开右边 Releases 下的最新版本,找到下面 Assets 里 -win64.zip
结尾的,下载本地解压缩。
使用 Zstandard 解压软件
在上一步解压缩后的文件夹里,右键“在终端中打开”,使用命令来解压缩:
./zstd.exe -d D:\File_patch\files.tar.zst
这样就能得到一个 .tar
的解压后文件,用其他系统自带的解压软件就可以右键直接解压了。
使用 Zstandard 压缩文件
zstd 命令只支持压缩文件,不能直接压缩文件夹,压缩单个文件时直接./zstd.exe file.txt
,如果压缩文件夹要结合tar
一起使用,比如:
tar -cvzf archive.tar "D:\File_patch\file_dic"