Find all directories and files of your laptop
我们如何用Python编写代码?查找所有文件系统,包括从根目录到当前计算机系统每个文件的文件。
您可以使用
1 2 3 4 5 6 7 8 | # !/usr/bin/python import os for root, dirs, files in os.walk(".", topdown=False): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path.join(root, name)) |
摘自http://www.tutorialspoint.com/python/os_walk.htm
请参阅完整的文档:https://docs.python.org/2/library/os.html os.walk
请参阅
如果要查找当前系统的所有目录,则需要使用诸如bfs search(https://en.wikipedia.org/wiki/width-first_search)等方法在系统中迭代。