Answers for "how to get size of file using os module in python"

3

python get size of file

import os

# get size in bytes
path = 'path/to/file.txt'
size = os.path.getsize(path)
Posted by: Guest on June-19-2020

Code answers related to "how to get size of file using os module in python"

Python Answers by Framework

Browse Popular Code Answers by Language