2024-09-01
Python
00

Windows、Linux

python
# -*- coding: UTF8 -*- import os import time def TimeStampToTime(timestamp): timeStruct = time.localtime(timestamp) return time.strftime('%Y-%m-%d %H:%M:%S', timeStruct) def get_FileCreateTime(filePath): # '''获取文件的创建时间''' # filePath = unicode(filePath,'utf8') t = os.path.getctime(filePath) return TimeStampToTime(t) def get_FileModifyTime(filePath): # '''获取文件的修改时间''' # filePath = unicode(filePath, 'utf8') t = os.path.getmtime(filePath) return TimeStampToTime(t) def get_FileAccessTime(filePath): # '''获取文件的访问时间''' # filePath = unicode(filePath, 'utf8') t = os.path.getatime(filePath) return TimeStampToTime(t) def get_FileSize(filePath): # '''获取文件的大小,结果保留两位小数,单位为MB''' # filePath = unicode(filePath,'utf8') fsize = os.path.getsize(filePath) fsize = fsize / float(1024 * 1024) return round(fsize, 2) if __name__ == '__main__': path = r"D:\Desktop\实际图每隔30分钟\kevin_picture_alg_need_collect" print(get_FileCreateTime(path)) print(get_FileModifyTime(path)) print(get_FileAccessTime(path)) print(get_FileSize(path))
如果对你有用的话,可以打赏哦
打赏
ali pay
wechat pay

本文作者:Dong

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!