1. 首页
  2. 数据库
  3. 其它
  4. python使用os模块的os.walk遍历文件夹示例

python使用os模块的os.walk遍历文件夹示例

上传者: 2020-12-31 15:20:27上传 PDF文件 26.79KB 热度 9次
复制代码 代码如下:#-*- 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
下载地址
用户评论