Answers for "get size of text file 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
0

Python program to get the file size of a plain file.

import os
filepath='file1.txt'
size=os.path.getsize(filepath)
print(str(size) + ' Bytes')
Posted by: Guest on December-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language