# -*- coding: UTF8 -*-code
import time
import datetimeunicode
import osget
一、 '''把時間戳轉化爲時間: 1479264792 to 2016-11-16 10:53:12'''
def TimeStampToTime(timestamp):
timeStruct = time.localtime(timestamp)
return time.strftime('%Y-%m-%d %H:%M:%S',timeStruct)import
二、 '''獲取文件的大小,結果保留兩位小數,單位爲MB'''
def get_FileSize(filePath):
filePath = unicode(filePath,'utf8')
fsize = os.path.getsize(filePath)
fsize = fsize/float(1024*1024)
return round(fsize,2)date
三、 '''獲取文件的訪問時間'''
def get_FileAccessTime(filePath):
filePath = unicode(filePath,'utf8')
t = os.path.getatime(filePath)
return TimeStampToTime(t)coding
四、 '''獲取文件的建立時間'''
def get_FileCreateTime(filePath):
filePath = unicode(filePath,'utf8')
t = os.path.getctime(filePath)
return TimeStampToTime(t)file
五、 '''獲取文件的修改時間'''
def get_FileModifyTime(filePath):
filePath = unicode(filePath,'utf8')
t = os.path.getmtime(filePath)
return TimeStampToTime(t)float