人生苦短,我用Python。
这话真不是随便说的。在做的一个项目中,需要遍历子目录,并将文件保存到列表中,通过Python,几行代码就能实现。
如此优雅简洁,忍不住分享出来:
>>> from os import listdir
>>> from os.path import isfile, join
>>> dirs = [x[0] for x in os.walk('.')]
>>> files = []
>>> for dir in dirs:
... files = files + [dir + '/' + f for f in listdir(dir) if isfile(join(dir,f))]
...
>>> files
['./6/unit1/Unit1_Words.mp3', './6/unit1/Unit1.mp3', './6/unit2/Unit2_Words.mp3', ......]
参考这儿。
网友评论