论坛首页 编程语言技术论坛

python 动态递归修改文件权限

浏览 3829 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2011-04-19   最后修改:2011-04-21

因为自己以前不小心 chmod 700 -R ~/ 导致自己目录里面的很多文件不能被系统索引到  搜索的时候不方便

又不想chmod 777 -R ~/

 

就想有什么办法能对目录 g+r+x o+r+x  对文件g+r  o+r 呢 

正好又!在学python, 就自己用python写了一个

 

# coding:utf-8
import os
import stat
path="/Users/xxx/BOOKS"



for root, dirs, files in os.walk(path):
    for file in files:
        if(not file[0] == "."):
            fp=os.path.join(root, file)   #生成完整路径
            print fp
            # 在原来的权限基础上加上 g+r o+r
            os.chmod(fp, stat.S_IMODE(os.stat(fp)[stat.ST_MODE]) | stat.S_IRGRP | stat.S_IROTH )
    for dir in dirs:
        if(not dir[0] == "."):  # 这句话没有起作用  因为walk自己还是会遍历到.dir下面去
            dp = os.path.join(root, dir)
            print dp
            os.chmod(dp, stat.S_IMODE(os.stat(dp)[stat.ST_MODE])  | stat.S_IRGRP | stat.S_IXGRP | stat.S_IROTH | stat.S_IXOTH)
               # visit(os.path.join(root, dir))   walk方法自己会去递归遍历子目录 不要加这句
 

 

 

 

 

 

学python的时候看到一个好文章 也贴下

从140秒到2秒的优化 http://www.fuchaoqun.com/2009/11/from-140s-to-2s/

 

论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics