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. El módulo os.path es un submódulo del módulo OS en Python utilizado para la manipulación de nombres de rutas comunes.
os.path.getsize()
El método en Python se usa para verificar el tamaño de la ruta especificada. Devuelve el tamaño de la ruta especificada en bytes . El método genera OSError si el archivo no existe o es de alguna manera inaccesible.
Sintaxis: os.path.getsize(ruta)
Parámetro:
ruta : un objeto similar a una ruta que representa una ruta del sistema de archivos. Un objeto similar a una ruta es una string o un objeto de bytes que representa una ruta.Tipo de devolución: este método devuelve un valor entero que representa el tamaño de la ruta especificada en bytes .
Código #1: Uso del método os.path.getsize()
# Python program to explain os.path.getsize() method # importing os module import os # Path path = '/home/User/Desktop/file.txt' # Get the size (in bytes) # of specified path size = os.path.getsize(path) # Print the size (in bytes) # of specified path print("Size (In bytes) of '%s':" %path, size)
Size (In bytes) of '/home/User/Desktop/file.txt': 243
Código n.º 2: error de manejo al usar el método os.path.getsize()
# Python program to explain os.path.getsize() method # importing os module import os # Path path = '/home/User/Desktop/file2.txt' # Get the size (in bytes) # of specified path try : size = os.path.getsize(path) except OSError : print("Path '%s' does not exists or is inaccessible" %path) sys.exit() # Print the size (in bytes) # of specified path print("Size (In bytes) of '% s':" % path, size)
Path '/home/User/Desktop/file2.txt' does not exists or is inaccessible
Referencia: https://docs.python.org/3/library/os.path.html