python使用os模块的os.walk遍历文件夹示例
程序员文章站
2022-07-17 11:30:44
复制代码 代码如下:#-*- coding:utf-8 -*-
import os
if __name__ == '__main__': &nbs...
复制代码 代码如下:
#-*- 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)
推荐阅读
-
Python_WIN10系统中递归所有文件夹所有文件_移动所有文件到主目录(使用到的库:os + glob + shutil)
-
Python中atexit模块的基本使用示例
-
Python paramiko模块的使用示例
-
在Python中关于使用os模块遍历目录的实现方法
-
Python ConfigParser模块的使用示例
-
python中的os模块使用方法
-
Python使用pymongo模块操作MongoDB的方法示例
-
Python使用re模块正则提取字符串中括号内的内容示例
-
python使用os.listdir和os.walk获得文件的路径的方法
-
在Python中使用matplotlib模块绘制数据图的示例