如何在 Windows 中使用 Python 删除只读 attrib 目录? [英] How to remove read-only attrib directory with Python in Windows?

查看:26
本文介绍了如何在 Windows 中使用 Python 删除只读 attrib 目录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个从版本控制目录复制的只读目录,该目录已被锁定.

I have a read only directory copied from version controlled directory which is locked.

当我尝试使用 shutil.rmtree(TEST_OBJECTS_DIR) 命令删除此目录时,我收到以下错误消息.

When I tried to remove this directory with shutil.rmtree(TEST_OBJECTS_DIR) command, I got the following error message.

WindowsError: [Error 5] Access is denied: 'C:...environment.txt'

  • 问:如何更改整个目录结构中所有内容的属性?
    • Q : How can I change the attribute of everything in a whole directory structure?
    • 推荐答案

      如果你使用的是shutil.rmtree,你可以使用该函数的onerror 成员来提供一个接受三个参数的函数:函数、路径和异常信息.您可以使用此方法在删除树时将只读文件标记为可写.

      If you are using shutil.rmtree, you can use the onerror member of that function to provide a function that takes three params: function, path, and exception info. You can use this method to mark read only files as writable while you are deleting your tree.

      import os, shutil, stat
      
      def on_rm_error( func, path, exc_info):
          # path contains the path of the file that couldn't be removed
          # let's just assume that it's read-only and unlink it.
          os.chmod( path, stat.S_IWRITE )
          os.unlink( path )
      
      shutil.rmtree( TEST_OBJECTS_DIR, onerror = on_rm_error )
      

      现在,公平地说,可以出于多种原因调用错误函数.'func' 参数可以告诉您哪个函数失败"(os.rmdir() 或 os.remove()).你在这里做什么取决于你希望你的 rmtree 是多么的防弹.如果这真的只是需要将文件标记为可写的情况,你可以按照我上面做的.如果您想更加小心(即确定目录是否不能被删除,或者在尝试删除文件时是否存在共享冲突),则必须将适当的逻辑插入到 on_rm_error() 函数中.

      Now, to be fair, the error function could be called for a variety of reasons. The 'func' parameter can tell you what function "failed" (os.rmdir() or os.remove()). What you do here depends on how bullet proof you want your rmtree to be. If it's really just a case of needing to mark files as writable, you could do what I did above. If you want to be more careful (i.e. determining if the directory coudln't be removed, or if there was a sharing violation on the file while trying to delete it), the appropriate logic would have to be inserted into the on_rm_error() function.

      这篇关于如何在 Windows 中使用 Python 删除只读 attrib 目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆