在 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.")
其他重點:
以上是如何在 Python 中確定檔案的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!