Python os.fchmod() 方法

python os.fchmod() 方法

python os 文件/目录方法python os 文件/目录方法

os.fchmod() 方法用于改变一个文件的访问权限,该文件由参数fd指定,参数mode是unix下的文件访问权限。

unix上可用。

 

语法

fchmod()方法语法格式如下:

os.fchmod(fd, mode);

 

参数

  • fd -- 文件描述符
  • mode -- 可以是以下一个或多个组成,多个使用 "|" 隔开:

    • stat.s_isuid:设置 uid 位
    • stat.s_isgid: 设置组 id 位
    • stat.s_enfmt: 系统文件锁定的执法行动
    • stat.s_isvtx: 在执行之后保存文字和图片
    • stat.s_iread: 对于拥有者读的权限
    • stat.s_iwrite: 对于拥有者写的权限
    • stat.s_iexec: 对于拥有者执行的权限
    • stat.s_irwxu:对于拥有者读、写、执行的权限
    • stat.s_irusr: 对于拥有者读的权限
    • stat.s_iwusr: 对于拥有者写的权限
    • stat.s_ixusr: 对于拥有者执行的权限
    • stat.s_irwxg: 对于同组的人读写执行的权限
    • stat.s_irgrp: 对于同组读的权限
    • stat.s_iwgrp:对于同组写的权限
    • stat.s_ixgrp: 对于同组执行的权限
    • stat.s_irwxo: 对于其他组读写执行的权限
    • stat.s_iroth: 对于其他组读的权限
    • stat.s_iwoth: 对于其他组写的权限
    • stat.s_ixoth:对于其他组执行的权限

 

返回值

该方法没有返回值。

 

实例

以下实例演示了 fchmod() 方法的使用:

#!/usr/bin/python
# -*- coding: utf-8 -*-

import os, sys, stat

# 打开文件 "/tmp/foo.txt"
fd = os.open( "/tmp", os.o_rdonly )

# 设置文件可通过组执行

os.fchmod( fd, stat.s_ixgrp)

# 设置文件可被其他用户写入
os.fchmod(fd, stat.s_iwoth)

print "修改权限成功!!"

# 关闭文件
os.close( fd )

执行以上程序输出结果为:

修改权限成功!!

python os 文件/目录方法python os 文件/目录方法

下一节:python os.fchown() 方法

python 教程

相关文章