tar 中某个目录的所有文件作为类文件 obj

发布于 2024-10-03 22:22:19 字数 70 浏览 0 评论 0原文

有一种简单的方法可以将特定目录(位于 tar 文件中的目录)中的所有文件依次作为相同的文件状对象获取吗?

氨氮

there is a simple way to get all files inside a specifically dir (dir that is in a tar file) one after another as a same file-like object?

TNX

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

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

发布评论

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

评论(1

萌辣 2024-10-10 22:22:19

使用 TarFile.getmembers()获取 tarball 中的所有条目,并迭代它们以过滤您想要的条目。将每个依次传递给 TarFile.extractfile() 获取 tarball 中条目的类似文件。

Use TarFile.getmembers() to get all the entries in a tarball, and iterate through them to filter the ones you want. Pass each in turn to TarFile.extractfile() to get a file-like to the entry within the tarball.

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