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.chown()
El método en Python se usa para cambiar el propietario y la identificación del grupo de la ruta especificada a la identificación numérica del propietario (UID) y la identificación del grupo (GID) especificadas.
Nota: os.chown()
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.chown(ruta, uid, gid, *, dir_fd = Ninguno, seguir_enlaces simbólicos = Verdadero)
Parámetros:
ruta : un descriptor de archivo que representa el archivo cuyo uid y gid se establecerán.
uid : un valor entero que representa la identificación del propietario que se establecerá para la ruta.
gid : un valor entero que representa la identificación del grupo que se establecerá para la ruta. Para dejar cualquiera de los ID sin cambios, configúrelo en -1.
dir_fd (opcional): un descriptor de archivo que hace referencia a un directorio. El valor predeterminado de este parámetro es Ninguno.
follow_symlinks (opcional): el valor predeterminado de este parámetro es True. Si no queremos que el método os.chown() siga el enlace simbólico, podemos establecerlo en False. Si es Falso, el método operará en el enlace simbólico mismo en lugar del archivo al que apunta el enlace.Nota: El ‘*’ en la lista de parámetros indica que todos los siguientes parámetros (aquí, en nuestro caso, ‘dir_fd’ y ‘follow_symlinks’) son parámetros de solo palabras clave y se pueden proporcionar usando su nombre, no como un parámetro posicional.
Tipo de devolución: este método no devuelve ningún valor.
Código #1:
Uso del método os.chown()
# Python program to explain os.chown() method # importing os module import os # File path path = "./file.txt" # Print the current owner id # and group id of the # specified file path # 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(path).st_uid) print("Group id of the file:", os.stat(path).st_gid) # Change the owner id and # the group id of the file # using os.chown() method uid = 2000 gid = 2000 os.chown(path, 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(path).st_uid) print("Group id of the file:", os.stat(path).st_gid)
Producción:
Código #2:
Uso del método os.chown() para establecer cualquier ID y dejar el otro sin cambios
# Python program to explain os.chown() method # importing os module import os # File path = "./file.txt" # 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(path).st_uid) print("Group id of the file:", os.stat(path).st_gid) # Change only owner id of # the file and leave # group id unchanged # set id as -1 to leave # it unchanged uid = 3000 gid = -1 os.chown(path, uid, gid) print("\nOwner id of the file changed") # Print the owner id # and group id of the file print("\nOwner id of the file:", os.stat(path).st_uid) print("Group id of the file:", os.stat(path).st_gid)
Producción:
Código #3:
Si la ruta especificada es un enlace simbólico
# Python program to explain os.chown() 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) # 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 = 1000 gid = 1000 os.chown(symlink, 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.chown() method # follows symlink # so, we can change the # owner and group id # through a symlink # We can modify the follow_symlinks # parameter if we do not # want os.chown() method to # follow symlink # Change the ownership # of the symlink pointing # to the above file './file.txt' uid = 4000 gid = 4000 os.chown(symlink, uid, gid, follow_symlinks = False) print("\nOwner id and group id not changed") # Print the owner id # and group id of the file # as well as the symlink # pointing to it 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)
Producción:
Referencia: https://docs.python.org/3/library/os.html