Python—获取文件基本信息
2019-07-17 09:18:28
import os
def formatTime(longtime):
'''格式化时间的函数'''
import time
return time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(localtime))
def formatByte(number):
'''格式化文件大小的函数'''
for(scale.label) in [(1024*1024*1024,"GB"),(1024*1024,"MB"),(1024,"KB")]:
if number>=scale:
return "%.2f %s" %(number*1.0/scale,lable)
elif number ==1:
return "1字节"
else: #小于1字节
byte = "%.2f" % (number or 0)
return (byte[:-3]) if byte.endswith(".00") else byte) + "字节"
fileinfo = os.stat("mr.png") #获取文件的基本信息
print("文件完整路径:",os.path.abspath("mr.png")) #获取文件的完整路径
#输出文件的基本信息
print("索引号:",fileinfo.st_ino)
print("设备名:",fileinfo.st_dev)
print("文件大小:",formatByte(fileinfo.st_size))
print("最后一次访问时间:",formatTime(fileinfo.st_atime))
print("最后一次修改时间:",fileinfo.st_mtime)
print("最后一次状态变化的时间:",fileinfo.st_ctime)
https://www.cnblogs.com/kzxiaotan/articles/10486525.html
上一篇:友谊是一株树
- 我国科学家发现土卫二可能存在“生命之磷”2022-10-07
- 新疆10月17日新增本土“8+133”2022-10-18
- 中国政治的确定性,给了世界稳定感2022-10-11
- 河北10月9日新增无症状感染者20例2022-10-10
- 浙江10月2日新增本土新冠阳性7例2022-10-03
- 从“上下五千年”到“上下八千年”2022-10-16
- 10月9日新疆新增本土确诊70例、无症状感染者376例2022-10-10
- 国庆假期全国国内旅游出游4.22亿人次2022-10-07
- 防疫工作履职不力!呼和浩特5名干部被问责2022-10-06
- 鄱阳湖水位止跌回升 江西还将“旱”多久?2022-10-13
