我尝试使用 7zip 为文件夹创建存档。它压缩了所有文件并说一切正常。但我在包含该文件夹的目录中找不到存档。以下是我的命令和部分输出:
$p7zip folder/
...
Creating archive: folder/.7z
Items to compress: 786
...
Files read from disk: 653
Archive size: 3155722 bytes (3082 KiB)
Everything is Ok
我以为 7zip 创建了一个存档,但我找不到它。有人知道 7zip 将存档输出到哪里吗?
答案1
您的 7zip 文件位于 中folder/.7z
。该命令的输出告诉您:Creating archive: folder/.7z
。您没有指定文件名,因此它生成了没有文件名的文件。只是一个扩展名。find
如果您在查找文件时遇到问题,我建议您使用该命令。看看我的例子,我在下面重现了您的场景。
root@myputer:~/test# mkdir folder/
root@myputer:~/test# p7zip folder/
7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21 p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,4 CPUs Intel(R) Core(TM) i5-4590 CPU @ 3.30GHz (306C3),ASM,AES-NI)
Scanning the drive: 1 folder, 0 files, 0 bytes
Creating archive: folder/.7z
Items to compress: 1
Files read from disk: 0
Archive size: 90 bytes (1 KiB)
Everything is Ok
root@myputer:~/test# find folder
folder folder/.7z
root@myputer:~/test# cd folder/
root@myputer:~/test/folder# ll
total 12
drwxr-xr-x 2 root root 4096 Oct 16 16:34 ./
drwxrwxr-x 3 me me 4096 Oct 16 16:33 ../
-rw-r--r-- 1 root root 90 Oct 16 16:34 .7z
这是你的文件.7z
。