Python - How to get file size

By xngo on June 16, 2019

import os
filesize_bytes = os.path.getsize("file.csv")
print("Filesize =", filesize_bytes, "bytes.")

Output

Filesize = 116 bytes.

About the author

Xuan Ngo is the founder of OpenWritings.net. He currently lives in Montreal, Canada. He loves to write about programming and open source subjects.