Python tarfile 模块在提取过程中覆盖现有文件 - 如何禁用它?

发布于 2024-09-27 07:32:52 字数 205 浏览 7 评论 0原文

有没有办法防止 tarfile.extractall (API )避免覆盖现有文件?我所说的“防止”是指理想情​​况下在即将发生覆盖时引发异常。当前的行为是静默覆盖文件。

Is there a way prevent tarfile.extractall (API) from overwriting existing files? By "prevent" I mean ideally raising an exception when an overwrite is about to happen. The current behavior is to silently overwrite the files.

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

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

发布评论

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

评论(3

茶底世界 2024-10-04 07:32:52

You could check result of tarfile.getnames against the existing files and raise your error.

梦里梦着梦中梦 2024-10-04 07:32:52

您是否尝试过将 tarfile.errorlevel 设置为 2?这将导致出现非致命错误。我假设覆盖属于该类别。

Have you tried setting tarfile.errorlevel to 2? That will cause non-fatal errors to be raised. I'm assuming an overwrite falls in that category.

拿命拼未来 2024-10-04 07:32:52

我有类似的情况,我只想在所有文件尚未提取时提取。我使用以下函数来检查 archive 是否已提取到 extract_dir

from pathlib import Path
import tarfile

def is_extracted(archive, extract_dir):
    tar = tarfile.open(archive)
    filenames = tar.getnames()
    return all([(Path(extract_dir) / f).exists() for f in filenames])

I have a similar situation, where I only want to extract if all the files have not yet already been extracted. I use the following function to check if archive has already been extracted to extract_dir:

from pathlib import Path
import tarfile

def is_extracted(archive, extract_dir):
    tar = tarfile.open(archive)
    filenames = tar.getnames()
    return all([(Path(extract_dir) / f).exists() for f in filenames])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文