python file size
>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
python file size
>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
python get file size
>>> from pathlib import Path
>>> Path('somefile.txt').stat()
#OUTPUT:
os.stat_result(st_mode=33188, st_ino=6419862, st_dev=16777220, st_nlink=1, st_uid=501, st_gid=20, st_size=1564, st_atime=1584299303, st_mtime=1584299400, st_ctime=1584299400)
>>> Path('somefile.txt').stat().st_size
#OUTPUT:
1564
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us