精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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 教程

相關文章