Write a Python program to get the file size of a plain file. 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)

Example 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 #

Example 4: 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')