import os
def get_file_size(file_path):
fsize = os.path.getsize(file_path) # 获取文件大小:以字节为单位
# 可换算成MB等单位
fsize = fsize / float(1024 * 1024)
return fsize
Python 读取文件大小
最新推荐文章于 2023-07-18 16:22:17 发布
import os
def get_file_size(file_path):
fsize = os.path.getsize(file_path) # 获取文件大小:以字节为单位
# 可换算成MB等单位
fsize = fsize / float(1024 * 1024)
return fsize