如何在 Python 中检查文件大小?
要在Python中检查文件大小,可以使用os.path.getsize()函数来获取文件大小。下面是如何实现的示例:
os.path.getsize()
import os file_path = '文件路径' # 替换为你要检查的文件路径 # 检查文件是否存在 if os.path.exists(file_path): # 获取文件大小(字节数) file_size = os.path.getsize(file_path) print(f"文件 '{file_path}' 的大小为 {file_size} 字节。") else: print(f"文件 '{file_path}' 不存在。")
导入模块: 导入os模块,该模块提供了各种与操作系统交互的方法,包括文件操作。
os
文件路径: 将 '文件路径' 替换为你要检查的实际文件路径。
'文件路径'
检查文件存在性: 在获取文件大小之前,最好使用 os.path.exists(file_path) 检查文件是否存在。
os.path.exists(file_path)
获取文件大小: 使用 os.path.getsize(file_path) 获取指定 file_path 的文件大小(以字节为单位)。这个函数返回文件的大小。
os.path.getsize(file_path)
file_path
输出: 打印文件大小(字节数)。
这种方法在Python中检查文件大小非常简单和高效。确保将 file_path 变量调整为指向要检查的特定文件。