Answers for "size of python file"

5

python file size

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

Python program to get the file size of a plain file.

import os
filepath='file1.txt'
size=os.path.getsize(filepath)
print(str(size) + ' Bytes')
Posted by: Guest on December-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language