黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python os.fchown() 方法

python os.fchown() 方法

python os 文件/目錄方法python os 文件/目錄方法

os.fchown() 方法用于修改一個(gè)文件的所有權(quán),這個(gè)函數(shù)修改一個(gè)文件的用戶id和用戶組id,該文件由文件描述符fd指定。

unix上可用。

 

語(yǔ)法

fchown()方法語(yǔ)法格式如下:

os.fchown(fd, uid, gid)

 

參數(shù)

  • fd -- 文件描述符
  • uid -- 文件所有者的用戶id

  • gid -- 文件所有者的用戶組id

 

返回值

該方法沒有返回值。

 

實(shí)例

以下實(shí)例演示了 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)限成功!!

python os 文件/目錄方法python os 文件/目錄方法

下一節(jié):python os.fdatasync() 方法

python 教程

相關(guān)文章