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, inos.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 Python skills with w3resource's quiz
Python: Tips of the Day
Removes falsey values from a list
Example:
def tips_compact(lst): return list(filter(None, lst)) print(tips_compact([0, 1, False, 2, '', 3, 'x', 'r', 35]))
Output:
[1, 2, 3, 'x', 'r', 35]
- New Content published on w3resource:
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework