El módulo OS en Python proporciona funciones para interactuar con el sistema operativo. OS viene bajo los módulos de utilidad estándar de Python. Este módulo proporciona una forma portátil de usar la funcionalidad dependiente del sistema operativo.
Todas las funciones en el módulo os generan OSError en el caso de nombres y rutas de archivo no válidos o inaccesibles, u otros argumentos que tienen el tipo correcto, pero que el sistema operativo no acepta.
os.fchown()
El método en Python se usa para cambiar el propietario y la identificación del grupo del archivo asociado con el descriptor de archivo especificado a la identificación numérica del propietario (UID) y la identificación del grupo (GID) especificadas. Este método es equivalente al os.chown(fd, uid, gid)
método.
Nota: os.fchown()
el método solo está disponible en plataformas UNIX y la funcionalidad de este método generalmente está disponible solo para el superusuario o un usuario privilegiado.
Sintaxis: os.fchown(fd, uid, gid)
Parámetros:
fd : un descriptor de archivo que representa el archivo cuyo uid y gid se van a establecer
uid : un valor entero que representa la identificación del propietario que se va a establecer para el archivo.
gid : un valor entero que representa la identificación del grupo que se establecerá para el archivo. Para dejar cualquiera de los ID sin cambios, configúrelo en -1.Tipo de devolución: este método no devuelve ningún valor.
Código #1:
Uso del método os.fchown()
# Python program to explain os.fchown() method # importing os module import os # File filename = "file.txt" # Open the file and get the # file descriptor associated # with it using os.open() method fd = os.open(filename, os.O_RDWR) # Print the current owner id # and group id of the file # os.stat() method will return a # 'stat_result’ object of # ‘os.stat_result’ class whose # 'st_uid' and 'st_gid' attributes # will represent owner id and group id # of the file respectively print("Owner id of the file:", os.stat(fd).st_uid) print("Group id of the file:", os.stat(fd).st_gid) # Change the owner id and # the group id of the file # associated with the file descriptor # using os.fchown() method uid = 200 gid = 300 os.fchown(fd, uid, gid) print("\nOwner and group id of the file changed") # Print the owner id # and group id of the file print("\nOwner id of the file:", os.stat(fd).st_uid) print("Group id of the file:", os.stat(fd).st_gid)
Producción:
Código #2:
Uso del método os.fchown() para establecer cualquier ID y dejar el otro sin cambios
# Python program to explain os.fchown() method # importing os module import os # File filename = "file.txt" # Open the file and get the # file descriptor associated # with it using os.open() method fd = os.open(filename, os.O_RDWR) # Print the current owner id # and group id of the file # os.stat() method will return a # 'stat_result’ object of # ‘os.stat_result’ class whose # 'st_uid' and 'st_gid' attributes # will represent owner id and group id # of the file respectively print("Owner id of the file:", os.stat(fd).st_uid) print("Group id of the file:", os.stat(fd).st_gid) # Change only group id of # the file and leave owner id # unchanged # set id as -1 to leave # it unchanged uid = -1 gid = 1000 os.fchown(fd, uid, gid) print("\ngroup id of the file changed") # Print the owner id # and group id of the file print("\nOwner id of the file:", os.stat(fd).st_uid) print("Group id of the file:", os.stat(fd).st_gid)
Producción:
Código #3:
Si la ruta especificada es un enlace simbólico
# Python program to explain os.fchown() method # importing os module import os # File path path = "./file.txt" # Creating a symlink # of the above path # using os.symlink() method symlink = "./file(symlink).txt" os.symlink(path, symlink) # Open the symlink # and get the file descriptor # associated with it using # os.open() method fd = os.open(symlink, os.O_RDWR) # Print the current owner id # and group id of the file # as well as the symlink pointing # to the above specified file path print("Owner id of the file:", os.stat(path).st_uid) print("Group id of the file:", os.stat(path).st_gid) print("Owner id of the symlink:", os.stat(symlink).st_uid) print("Group id of the symlink:", os.stat(symlink).st_gid) # Change the ownership # of the symlink pointing # to the above file './file.txt' uid = 600 gid = 700 os.fchown(fd, uid, gid) print("\nOwner id and group id changed") # Print the owner id # and group id of the file # as well as the symlink print("\nOwner id of the file:", os.stat(path).st_uid) print("Group id of the file:", os.stat(path).st_gid) print("Owner id of the symlink:", os.stat(symlink).st_uid) print("Group id of the symlink:", os.stat(symlink).st_gid) # As os.fchown() method # follows symlink # so, we can change the # owner and group id # through a symlink
Producción:
Referencia: https://docs.python.org/3/library/os.html