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.
os.fchdir()
El método en Python se usa para cambiar el directorio de trabajo actual al directorio representado por el descriptor de archivo dado.
Un descriptor de archivo es un valor entero pequeño que corresponde a un archivo u otro recurso de entrada/salida, como una tubería o un conector de red. Un descriptor de archivo es un indicador abstracto de un recurso y actúa como identificador para realizar varias operaciones de E/S de nivel inferior como lectura, escritura, envío, etc.
Por ejemplo: la entrada estándar suele ser un descriptor de archivo con valor 0, la salida estándar suele ser un descriptor de archivo con valor 1 y el error estándar suele ser un descriptor de archivo con valor 2.
Los demás archivos abiertos por el proceso actual obtendrán el valor 3, 4, 5 y pronto.
os.fchdir()
método es equivalente a os.chdir(file_descriptor)
método.
Sintaxis: os.fchdir(fd)
Parámetro:
fd : Un descriptor de archivo. El descriptor de archivo debe representar un directorio abierto, no un archivo abierto.Tipo de devolución: este método no devuelve ningún valor.
Código #1:
Uso del método os.fchdir() para cambiar el directorio de trabajo actual
# Python program to explain os.fchdir() method # importing os module import os # Print the current working # directory using os.getcwd() method print("Current working directory:", os.getcwd()) # Path path = "/home/ihritik/Documents" # open the directory represented by # the above given path and get # the file descriptor associated # with it using os.open() method fd = os.open(path, os.O_RDONLY) # Change the current working # directory using os.fchdir() method os.fchdir(fd) print("Current working directory changed") # Print the current working # directory using os.getcwd() method print("Current working directory:", os.getcwd())
Current working directory: /home/ihritik Current working directory changed Current working directory: /home/ihritik/Documents
Código #2:
Posibles errores al usar el método os.fchdir()
# Python program to explain os.fchdir() method # importing os module import os # Path path = "/home/ihritik/Documents/file.txt" # open the above path and get # the file descriptor associated # with it using os.open() method fd = os.open(path, os.O_RDONLY) # The file descriptor must # represent an open file # instead of an opened directory # The method will raise # 'NotADirectoryError' exception # Change the current working # directory using os.fchdir() method os.fchdir(fd) print("Current working directory changed") # Print the current working # directory using os.getcwd() method print("Current working directory:", os.getcwd())
Traceback (most recent call last): File "changeDir.py", line 24, in os.fchdir(fd) NotADirectoryError: [Errno 20] Not a directory
Código #3:
Manejo de posibles errores al usar el método os.fchdir()
# Python program to explain os.fchdir() method # importing os module import os # Path path = "/home/ihritik/Desktop/file.txt" # try opening the above path and get # the file descriptor associated # with it using os.open() method try : fd = os.open(path, os.O_RDONLY) # Try Changing the current working # directory using os.fchdir() method try : os.fchdir(fd) print("Current working directory changed") # Print the current working # directory using os.getcwd() method print("Current working directory:", os.getcwd()) # Catch exceptions # If file descriptor does # not represents a directory except NotADirectoryError: print("The given file descriptor does \ not represent a directory") # Catch exceptions # If path does not exists except FileNotFoundError: print("Path does not exists") # If there is any permission # related issue while opening # the given path except PermissionError: print("Permission denied")
The given file descriptor does not represent a directory