python使用os模塊的os.walk遍歷文件夾示例
來源:懂視網(wǎng)
責(zé)編:小采
時間:2020-11-27 14:30:00
python使用os模塊的os.walk遍歷文件夾示例
python使用os模塊的os.walk遍歷文件夾示例: 代碼如下:#-*- coding:utf-8 -*- import os if __name__ == '__main__': try: '''traval and list all files and all dirs''' for root, dirs, files in os.walk('D:' + os.sep + 'Python27'):
導(dǎo)讀python使用os模塊的os.walk遍歷文件夾示例: 代碼如下:#-*- coding:utf-8 -*- import os if __name__ == '__main__': try: '''traval and list all files and all dirs''' for root, dirs, files in os.walk('D:' + os.sep + 'Python27'):
代碼如下:
#-*- coding:utf-8 -*-
import os
if __name__ == '__main__':
try:
'''traval and list all files and all dirs'''
for root, dirs, files in os.walk('D:' + os.sep + 'Python27'):
print '-------------------directory < ' + root + ' > --------------------------'
for d in dirs:
print d
for f in files:
print f
except OSError, e:
print os.strerror(e.errno)
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
python使用os模塊的os.walk遍歷文件夾示例
python使用os模塊的os.walk遍歷文件夾示例: 代碼如下:#-*- coding:utf-8 -*- import os if __name__ == '__main__': try: '''traval and list all files and all dirs''' for root, dirs, files in os.walk('D:' + os.sep + 'Python27'):