按目录级别获取大 TAR(gz) 文件内容

发布于 2024-09-13 11:36:29 字数 176 浏览 5 评论 0原文

我使用 python tarfile 模块。
我在 tar.gz 文件中有一个系统备份。
我需要获取第一级目录和文件列表,而不获取存档中的所有文件列表,因为它太长了。
例如:我需要获取 ['bin/', 'etc/', ... 'var/'] 就这样。
我该怎么做呢?甚至可能没有 tar 文件?那怎么办?

I use python tarfile module.
I have a system backup in tar.gz file.
I need to get first level dirs and files list without getting ALL the list of files in the archive because it's TOO LONG.
For example: I need to get ['bin/', 'etc/', ... 'var/'] and that's all.
How can I do it? May be not even with a tar-file? Then how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

她说她爱他 2024-09-20 11:36:29

如果不扫描整个文件,就无法扫描 tar 的内容;它没有中心索引。你需要像 ZIP 这样的东西。

You can't scan the contents of a tar without scanning the entire file; it has no central index. You need something like a ZIP.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文