标签: python file-permissions readonly-attribute
我想知道是否有一种正确的方法可以递归清除文件夹中所有文件的只读标志。
我知道如何使用批次as mentioned in this SU-Question here
所以我想到的一种方法是使用Python的subprocess来调用这个批处理命令。
subprocess
我的问题不是,是否有办法使用os,pathlib或类似的方法来实现这一目标?
os
pathlib
我知道,我可以在循环中将os.chmod与os.walk结合使用,但是有更常见的方式,也许是任何一种方法调用?
os.chmod
os.walk