溫馨提示×

利用Python的path函數獲取文件的大小信息

小樊
133
2024-08-23 10:57:25
欄目: 編程語言

可以使用Python的os.path模塊來獲取文件的大小信息。以下是一個示例代碼:

import os

def get_file_size(file_path):
    size = os.path.getsize(file_path)
    return size

file_path = 'example.txt'
file_size = get_file_size(file_path)
print(f'The size of {file_path} is {file_size} bytes.')

在這個示例中,我們定義了一個名為get_file_size的函數,它接受一個文件路徑作為參數,并使用os.path.getsize函數來獲取文件的大小信息。然后我們調用這個函數并輸出文件的大小信息。請注意,文件大小以字節(jié)為單位。

0