[ Web Proxy ]
URL:
Viewing: https://programiz.com/python-programming/examples/check-filesize [Back]  [Original]

Python Program to Check the File Size
Search tutorials & examples:

Python Program to Check the File Size

To understand this example, you should have the knowledge of the following Python programming topics:


Example 1: Using os module

import os

file_stat = os.stat('my_file.txt')
print(file_stat.st_size)

Output

34

Using stat() from the os module, you can get the details of a file. Use the st_size attribute of stat() method to get the file size.

The unit of the file size is byte.


Example 2: Using pathlib module

from pathlib import Path

file = Path('my_file.txt')
print(file.stat().st_size)

Output

34

Using the pathlib module, you can do the same thing as shown above. The unit of the file size is byte.


Also Read:

Did you find this article helpful?
phone:
submitted[dislike_feedback]:

Web Proxy Viewer  |  New URL  |  Original Page