在 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中文網其他相關文章!