Python os.lchmod() 方法

python os.lchmod() 方法

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

os.lchmod() 方法用于修改连接文件权限。

只支持在 unix 下使用。

 

语法

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

os.lchmod(path, mode)

 

参数

  • path -- 设置标记的文件路径
  • 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:对于其他组执行的权限

 

返回值

该方法没有返回值。

 

实例

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

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys
# 打开文件
path = "/var/www/html/foo.txt"
fd = os.open( path, os.o_rdwr|os.o_creat )
# 关闭文件
os.close( fd )
# 修改文件权限
# 设置文件可以通过组执行
os.lchmod( path, stat.s_ixgrp)
# 设置文件可以被其他用户写入
os.lchmod("/tmp/foo.txt", stat.s_iwoth)
print "修改权限成功!!"

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

修改权限成功!!

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

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

python 教程

相关文章