Python os.fchown() 方法
概述
os.fchown() 方法用于修改一個文件的所有權(quán),這個函數(shù)修改一個文件的用戶ID和用戶組ID,該文件由文件描述符fd指定。
Unix上可用。
語法
fchown()方法語法格式如下:
os.fchown(fd, uid, gid)
參數(shù)
fd -- 文件描述符
uid -- 文件所有者的用戶id
gid -- 文件所有者的用戶組id
返回值
該方法沒有返回值。
實例
以下實例演示了 fchown() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys, stat # 打開文件 "/tmp/foo.txt" fd = os.open( "/tmp", os.O_RDONLY ) # 設(shè)置文件的用戶 id 為 100 os.fchown( fd, 100, -1) # 設(shè)置文件的用戶組 id 為 100 os.fchown( fd, -1, 50) print "修改權(quán)限成功!!" # 關(guān)閉文件 os.close( fd )
執(zhí)行以上程序輸出結(jié)果為:
修改權(quán)限成功!!
更多建議: