“Obtener un tamaño de archivo Python” Código de respuesta

Tamaño del archivo de Python

>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
DigitalBorder

Python Get Tamaño del archivo

import os

# get size in bytes
path = 'path/to/file.txt'
size = os.path.getsize(path)
The Nic

Programa de Python para obtener el tamaño del archivo de un archivo simple.

import os
filepath='file1.txt'
size=os.path.getsize(filepath)
print(str(size) + ' Bytes')
Man

Cómo verificar el tamaño de un archivo en Python

import os
the_file_that_you_Want_to_check_the_size = os.path.getsize("The file Name")
print(the_file_that_you_Want_to_check_the_size)
# Your result #
Defeated Dove

Python Get Tamaño del archivo

import os
os.path.getsize('C:\\Python27\\Lib\\genericpath.py')
Obedient Opossum

Obtener un tamaño de archivo Python

>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")/ (1024*1024)
>>> b
Excited Echidna

Respuestas similares a “Obtener un tamaño de archivo Python”

Preguntas similares a “Obtener un tamaño de archivo Python”

Más respuestas relacionadas con “Obtener un tamaño de archivo Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código