Python3 os.fchown()方法

2019-10-16 23:08:28
fchown()方法更改通過 df 給定數位UID和GID檔案的所有者和組ID。如要退出ID時不變,可將其設定為-1。
注意:此方法是在 Python2.6 起可用的。

語法

以下是 fchown() 方法的語法:
os.fchown(fd, uid, gid)

引數

  • fd -- 這是其所有者ID和組ID需要進行設定的檔案描述符

  • uid -- 這是要設定的檔案所有者ID

  • gid -- 這是要設定檔案的組ID。

返回值

此方法不返回任何值。只在類 Unix 作業系統上可用。

範例

下面的範例顯示 fchown()方法的使用。
#!/usr/bin/python3

import os, sys, stat

# Now open a file "/tmp/foo.txt"
fd = os.open( "/tmp", os.O_RDONLY )

# Set the user Id to 100 for this file.
os.fchown( fd, 100, -1)

# Set the group Id to 50 for this file.
os.fchown( fd, -1, 50)

print ("Changed ownership successfully!!")

# Close opened file.
os.close( fd )
當我們執行上面的程式,它會產生以下結果:
Changed ownership successfully!!