Answers for "read file size using python 3"

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 get size of file

import os
os.path.getsize('C:\Python27\Lib\genericpath.py')
Posted by: Guest on June-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language