os.chflags(path, flags)
path -- 這是被用來改變到一個新的位置的完整路徑目錄。
flags -- 指定標誌是由位元位的以下值構成:
#!/usr/bin/python3 import os path = "/tmp/foo.txt" # Set a flag so that file may not be renamed or deleted. flags = os.SF_NOUNLINK retval = os.chflags( path, flags) print ("Return Value: %s" % retval)
Return Value : None