Python os.lchmod() 方法
python os.lchmod() 方法
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 "修改權限成功!!"
執行以上程序輸出結果為:
修改權限成功!!