Python os.lchmod() 方法
python os.lchmod() 方法
os.lchmod() 方法用于修改連接文件權(quán)限。
只支持在 unix 下使用。
語法
lchmod()方法語法格式如下:
os.lchmod(path, mode)
參數(shù)
- path -- 設(shè)置標(biāo)記的文件路徑
- mode -- 可以是以下一個或多個組成,多個使用 "|" 隔開:
- stat.s_isuid:設(shè)置 uid 位
- stat.s_isgid: 設(shè)置組 id 位
- stat.s_enfmt: 系統(tǒng)文件鎖定的執(zhí)法行動
- stat.s_isvtx: 在執(zhí)行之后保存文字和圖片
- stat.s_iread: 對于擁有者讀的權(quán)限
- stat.s_iwrite: 對于擁有者寫的權(quán)限
- stat.s_iexec: 對于擁有者執(zhí)行的權(quán)限
- stat.s_irwxu:對于擁有者讀、寫、執(zhí)行的權(quán)限
- stat.s_irusr: 對于擁有者讀的權(quán)限
- stat.s_iwusr: 對于擁有者寫的權(quán)限
- stat.s_ixusr: 對于擁有者執(zhí)行的權(quán)限
- stat.s_irwxg: 對于同組的人讀寫執(zhí)行的權(quán)限
- stat.s_irgrp: 對于同組讀的權(quán)限
- stat.s_iwgrp:對于同組寫的權(quán)限
- stat.s_ixgrp: 對于同組執(zhí)行的權(quán)限
- stat.s_irwxo: 對于其他組讀寫執(zhí)行的權(quán)限
- stat.s_iroth: 對于其他組讀的權(quán)限
- stat.s_iwoth: 對于其他組寫的權(quán)限
- stat.s_ixoth:對于其他組執(zhí)行的權(quán)限
返回值
該方法沒有返回值。
實例
以下實例演示了 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 ) # 關(guān)閉文件 os.close( fd ) # 修改文件權(quán)限 # 設(shè)置文件可以通過組執(zhí)行 os.lchmod( path, stat.s_ixgrp) # 設(shè)置文件可以被其他用戶寫入 os.lchmod("/tmp/foo.txt", stat.s_iwoth) print "修改權(quán)限成功!!"
執(zhí)行以上程序輸出結(jié)果為:
修改權(quán)限成功!!
相關(guān)文章
- Python 基礎(chǔ)語法
- Python 循環(huán)語句
- Python break 語句
- Python 操作 MySQL 數(shù)據(jù)庫
- Python SMTP發(fā)送郵件
- Python GUI編程 Tkinter
- Python 環(huán)境
- Python 列表
- Python Deque
- Python 搜索樹
- Python 圖形
- Python 算法分析
- Python 樹遍歷算法
- Python 排序算法
- Python3 教程
- Python3 if else 語句
- Python3 for while 循環(huán)語句
- Python3 函數(shù)
- Python3 OS 文件/目錄方法
- Python3 網(wǎng)絡(luò)編程