删除Python中具有某些属性的所有文件

发布于 2025-01-06 05:49:22 字数 126 浏览 0 评论 0原文

如何在 Python 中删除目录 /tmp/dir 及其所有扩展名为 .txt.mp3 的子目录中的所有文件?

How would you delete in Python all files in directory /tmp/dir and all its subdirectories that have extension .txt or .mp3?

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

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

发布评论

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

评论(1

神也荒唐 2025-01-13 05:49:22

您只需要使用 os.walk 递归遍历目录,并在找到名称符合您要求的文件时使用 os.remove 即可。

请注意,os.walk 一方面返回文件名,另一方面返回根目录。因此,要使 os.remove 正常工作,您需要使用 os.path.join 创建完整的文件名。

You just need to use os.walk to traverse recursively a directory and os.remove when you find a file whose name matches your requirements.

Note that os.walk returns on one hand file names and, on the other hand, a root directory. Hence, for the os.remove to work you'll need to create the full filename with os.path.join.

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