Python3 os.chown()方法

2019-10-16 23:08:18
chown()方法更改路徑的所有者和組id為數位uid和gid。 如要退出時 ID 不變,需要將其設定為-1。要設定所有權,需要超級使用者許可權..

語法

以下是 chown() 方法的語法:
os.chown(path, uid, gid)

引數

  • path -- 這是它的所有者ID和組ID,需要被設定的路徑。

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

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

返回值

此方法不返回任何值。

範例

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

import os, sys

# Assuming /tmp/foo.txt exists.
# To set owner ID 100 following has to be done.
os.chown("/tmp/foo.txt", 100, -1)

print ("Changed ownership successfully!!")
當我們執行上面的程式,它會產生以下結果:
Changed ownership successfully!!