python应用之文件属性浏览

import time,os
def showFilePROPERTIES(path):
    for root,dirs,files in os.walk(path,True):
        print('位置:' + root)
        for filename in files:
            state = os.stat(os.path.join(root,filename))
            info = '文件名:' + filename + ''
            info = info + '大小:' + ('%d' %state[-4])
            t = time.strftime('%Y:%m-%d %X',time.localtime(state[-1]))
            info = info + '创建时间:' + t + ''
            t = time.strftime('%Y:%m-%d %X',time.localtime(state[-2]))
            info = info + '最后修改时间:' + t +''
            t = time.strftime('%Y:%m-%d %X',time.localtime(state[-3]))
            info = info + '最后访问时间:' + t + ''
            print(info)
if __name__ == '__main__':
    path = r'E:\BaiduYunDownload'
    showFilePROPERTIES(path)

 

你可能感兴趣的:(python应用之文件属性浏览)