列出路径中的所有目录,并将信息保存到文本文件中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列出路径中的所有目录,并将信息保存到文本文件中相关的知识,希望对你有一定的参考价值。
#################################################### ## ## Prints a dir structure to a text file ## ## Usage : python printdir.py [path ala z:/mypath or /mypath/foo ## #################################################### import os, sys dir = sys.argv[1] outName = 'dirpaths.txt' f = open(outName,'w') # write initial dir for reference f.write (dir + ' ') count = 0 for item in os.walk(dir): count = count + 1 item = item[0].replace('\','/') curPath = item.split('/') if count == 1: curPath = item else: curPath = ' ' * (len(curPath)-1) + curPath[len(curPath)-1] f.write(curPath + ' ') print curPath f.close if os.path.exists(outName) : print 'File saved to: %s' % (outName)
以上是关于列出路径中的所有目录,并将信息保存到文本文件中的主要内容,如果未能解决你的问题,请参考以下文章
Python:读取文本文件并将其中列出的目录复制/粘贴到新目录
怎么用cmd搜索出指定后缀的文件路径并将所有路径返回到一个文本中?