在 Python 中使用 os.walk() 递归地导航目录
为了创建更结构化的目录列表,开发人员尝试修改他们的代码将目录显示为大写标题,并用虚线指示深度和目录下的文件。然而,他们最初的方法产生了不完整的结果。为了解决这个挑战,我们可以利用 Python 的 os.sep 属性来正确描述路径组件。这是一个改进的解决方案:#!/usr/bin/python import os # traverse root directory, and list directories as dirs and files as files for root, dirs, files in os.walk("."): path = root.split(os.sep) print((len(path) - 1) * '---', os.path.basename(root)) for file in files: print(len(path) * '---', file)
以上是如何使用 os.walk() 在 Python 中创建带有深度指示器的结构化目录列表?的详细内容。更多信息请关注PHP中文网其他相关文章!