Python遍曆指定檔案及檔案夾的方法

來源:互聯網
上載者:User

   這篇文章主要介紹了Python遍曆指定檔案及檔案夾的方法,對比兩種實現技巧分析了Python遍曆檔案及檔案夾的方法,需要的朋友可以參考下

  初次編寫:

  ?

1 2 3 4 5 6 7 import os def searchdir(arg,dirname,names): for filespath in names: open ('c:test.txt','a').write('%srn'%(os.path.join(dirname,filespath))) if __name__=="__main__": paths="g:" os.path.walk(paths,searchdir,())

  做了修改,添加了檔案屬性

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 # -*- coding: cp936 -*- import os,time #將檔案屬性中的時間改為‘2011-1-12 00:00:00格式' def formattime(localtime): endtime=time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(localtime)) return endtime def searchdir(arg,dirname,names): for filespath in names: #得到檔案路徑 fullpath=os.path.join(dirname,filespath) #得到檔案屬性 statinfo=os.stat(fullpath) #檔案大小 sizefile=statinfo.st_size #建立時間 creattime=formattime(statinfo.st_ctime) #修改時間 maketime=formattime(statinfo.st_mtime) #瀏覽時間 readtime=formattime(statinfo.st_atime) #判斷是檔案夾還是檔案 if os.path.isdir(fullpath): filestat='DIR' else: filestat='FILE' open ('c:test.txt','a').write('【%s】路徑:%s 檔案大小(B):%s 建立時間:%s 修改時間:%s 瀏覽時間:%srn'%(filestat,fullpath,sizefile,creattime,maketime,readtime)) if __name__=="__main__": paths="g:" os.path.walk(paths,searchdir,())

  希望本文所述對大家的Python程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.