python使用os模块的os.walk遍历文件夹示例
程序员文章站
2023-11-20 11:56:22
复制代码 代码如下:#-*- 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的pexpect模块,实现远程免密登录的示例
-
python使用os模块的os.walk遍历文件夹示例
-
Python使用os.listdir()和os.walk()获取文件路径与文件下所有目录的方法
-
Python中使用urllib2模块编写爬虫的简单上手示例
-
python遍历文件夹并删除特定格式文件的示例
-
Python_WIN10系统中递归所有文件夹所有文件_移动所有文件到主目录(使用到的库:os + glob + shutil)
-
Python中atexit模块的基本使用示例
-
Python paramiko模块的使用示例
-
在Python中关于使用os模块遍历目录的实现方法
-
Python ConfigParser模块的使用示例