首頁  >  文章  >  後端開發  >  如何在 Python 中取得檔案的大小?

如何在 Python 中取得檔案的大小?

DDD
DDD原創
2024-11-27 15:52:11804瀏覽

How Can I Get a File's Size in Python?

在 Python 中檢查檔案大小

確定檔案的大小是程式設計中的常見任務。 Python 提供了多種方法來實現此目的,最簡單的是使用 os.path.getsize() 函數。

使用os.path.getsize()

要使用os.path.getsize() 在Python 中取得檔案的大小,只需將檔案路徑作為參數傳遞給函數即可。輸出將以位元組為單位的檔案大小。

import os
file_size = os.path.getsize("/path/to/file.mp3")
print(file_size)  # Output: 2071611

範例輸出

以下程式碼示範如何使用os.path.getsize() 檢查檔案大小:

import os

# Get the size of a file in bytes
file_size = os.path.getsize("file.txt")

# Print the file size
print("File size:", file_size, "bytes")

如果檔案“file.txt”大小為1000位元組,則輸出將為:

File size: 1000 bytes

注意:

os.path.getsize() 傳回的大小總是以位元組為單位。如果您需要不同單位的大小,例如千字節或兆字節,則需要執行適當的轉換。

以上是如何在 Python 中取得檔案的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn