Ubuntu Python给予树的完全权限

时间:2015-10-28 09:09:36

标签: python ubuntu chmod

我想使用python为Ubuntu中的目录及其内容授予完全权限。我使用os.walk找到了解决方案here

for dirpath, dirnames, filenames in os.walk('.'):
     for filename in filenames:
        path = os.path.join(dirpath, filename)
        os.chmod(path, 0o777) # for example

但我想知道是否有更简单/更优雅的解决方案?

1 个答案:

答案 0 :(得分:0)

使用子进程模块: 呼叫(“chmod -R 777”+文件夹)