欢迎您 本站地址:  

Python os.fchmod() 方法

Python File(文件) 方法 Python OS 文件/目录方法


概述

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

Unix上可用。

语法

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

os.fchmod(fd, mode);

参数

返回值

该方法没有返回值。

实例

以下实例演示了 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 File(文件) 方法 Python OS 文件/目录方法

小库提示

扫描下方二维码,访问手机版。