how to get the type, size of file in python code example
Example 1: python file size
>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
Example 2: python get size of file
import os
# get size in bytes
path = 'path/to/file.txt'
size = os.path.getsize(path)