python 蟒蛇读文件的创建修改时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 蟒蛇读文件的创建修改时间相关的知识,希望对你有一定的参考价值。
import time
import datetime
import os
def timestamptotime(timestamp):
'''
时间戳转时间
:param timestamp: 时间戳
:return: 时间
'''
timestruct = time.localtime(timestamp)
return time.strftime('%Y-%m-%d %H:%M:%S', timestruct)
def get_filesize(filepath):
'''
获取文件大小,结果保留两位小数
:param filepath:
:return:
'''
filepath = unicode(filepath,'utf-8')
fsize = os.path.getsize(filepath)
fsize = fsize/float(1024*1024)
return round(fsize,2)
def get_fileaccesstime(filepath):
'''
获取文件访问时间
:param filepath:
:return:
'''
filepath = unicode(filepath, 'utf-8')
t = os.path.getatime(filepath)
return timestamptotime(t)
def get_filecreatTime(filepath):
'''
获取文件创建时间
:param filepath:
:return:
'''
filepath = unicode(filepath, 'utf-8')
t = os.path.getctime(filepath)
return timestamptotime(t)
def get_filemodifytime(filepath):
'''
获取文件修改时间
:param filepath:
:return:
'''
filepath = unicode(filepath, 'utf-8')
t = os.path.getmtime(filepath)
return timestamptotime(t)
以上是关于python 蟒蛇读文件的创建修改时间的主要内容,如果未能解决你的问题,请参考以下文章
初涉大蟒蛇-python基础篇
python 蟒蛇创建目录及目录树
Scrapy:在干净的蟒蛇环境中安装时出现问题
python 蟒蛇删除文件或目录
python 蟒蛇文件锁
python 蟒蛇当前文件路径