美文网首页
Python 获取文件大小,创建时间和访问时间

Python 获取文件大小,创建时间和访问时间

作者: 乂尤先生 | 来源:发表于2021-11-25 21:36 被阅读0次

    获取文件大小,结果保留两位小数,单位为M

    import os
    def Get_Size(fpath):
        fsize = os.path.getsize(fpath)
        fsize = fsize/float(1024*1024)
        return round(fsize,2)
    

    获取文件访问时间

    def Time_localtime(timestamp):
        stime = time.localtime(timestamp)
        return time.strftime('%Y-%m-%d %H:%M:%S',stime)
    def Get_AccessTime(fpath):
        t = os.path.getatime(fpath)
        return Time_localtime(t)
    

    获取文件创建时间

    def Time_localtime(timestamp):
        stime = time.localtime(timestamp)
        return time.strftime('%Y-%m-%d %H:%M:%S',stime)
    def Get_CreatTime(fpath):
        t = os.path.getctime(fpath)
        return Time_localtime(t)
    

    获取文件修改时间

    def Time_localtime(timestamp):
        stime = time.localtime(timestamp)
        return time.strftime('%Y-%m-%d %H:%M:%S',stime)
    def Get_ModifyTime(fpath):
        t = os.path.getmtime(fpath)
        return Time_localtime(t)
    

    相关文章

      网友评论

          本文标题:Python 获取文件大小,创建时间和访问时间

          本文链接:https://www.haomeiwen.com/subject/bevztrtx.html