Python: Obtain File Information and Size
作者:XD / 发表: 2022年9月8日 21:45 / 更新: 2022年9月8日 21:45 / 编程笔记 / 阅读量:1049
Python: Obtain File Information and Size
import os
path = "/data/test.zip"
file_info = os.stat(path)
print(file_info)
file_size = os.path.getsize(path))
print(file_size)
相关标签