首頁 >後端開發 >Python教學 >如何在 Python 中確定檔案的大小?

如何在 Python 中確定檔案的大小?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-05 00:06:11846瀏覽

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

在 Python 中決定檔案大小

測量檔案的大小是程式設計中的常見任務。 Python 透過其 os.path 模組提供了一個簡單的方法來完成此任務。

解決方案:

要檢查 Python 中檔案的大小,您可以使用 os .path.getsize() 函數。此函數接受檔案路徑作為參數,並傳回檔案的大小(以位元組為單位)。

實作:

以下程式碼片段示範如何使用 os.path.getsize ()擷取檔案大小:

import os

# Provide the path to the file whose size you want to determine.
file_path = "/path/to/file.mp3"

try:
    # Use os.path.getsize() to obtain the file size.
    file_size = os.path.getsize(file_path)
    print("File size:", file_size, "bytes")
except FileNotFoundError:
    print("Error: File not found.")

其他重點:

  • os.path.getsize() 的輸出以位元組為單位。
  • 您可以使用適當的方法將大小從位元組轉換為更容易閱讀的格式單位(例如千位元組、兆位元組等)。
  • 為了提高效率,您可以儲存經常存取的檔案的大小稍後使用,防止多次檔案系統呼叫。

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

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