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