Answers for "python check size of a file"

5

python file size

>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
Posted by: Guest on May-14-2020
3

how to check the size of a file in 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 #
Posted by: Guest on June-24-2020

Code answers related to "python check size of a file"

Python Answers by Framework

Browse Popular Code Answers by Language