w3resource

Python: Alter the owner and the group id of a specified file

Python Operating System Services: Exercise-14 with Solution

Write a Python program to alter the owner and the group ID of a specified file.

Sample Solution:

Python Code :

import os
fd = os.open( "/tmp", os.O_RDONLY )
os.fchown( fd, 100, -1)
os.fchown( fd, -1, 50)
print("Changed ownership successfully..")
os.close( fd )

Sample Output:

Traceback (most recent call last):
  File "/tmp/sessions/a24dd3f1f2e68f39/main.py", line 3, in 
    os.fchown( fd, 100, -1)
PermissionError: [Errno 1] Operation not permitted

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to join one or more path components together and split a given path in directory and file.
Next: Write a Python program to get information about the file pertaining to the file mode. Print the information - ID of device containing file, inode number, protection, number of hard links, user ID of owner, group ID of owner, total size (in bytes), time of last access, time of last modification and time of last status change.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.