Answers for "how to get length of file 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
3

how to check the size of a file in python

import os
the_file_that_you_Want_to_check_the_size = os.path.getsize("The file Name")
print(the_file_that_you_Want_to_check_the_size)
# Your result #
Posted by: Guest on June-24-2020
0

python get size of file

import os
os.path.getsize('C:\Python27\Lib\genericpath.py')
Posted by: Guest on June-28-2021

Code answers related to "how to get length of file in python"

Python Answers by Framework

Browse Popular Code Answers by Language