gpt4 book ai didi

python - 使用python获取子目录和文件

转载 作者:太空宇宙 更新时间:2023-11-04 10:54:45 25 4
gpt4 key购买 nike

获取驱动器子目录(包括位于其中的文件)的最佳方法是什么?最好使用 os.listdir() 并通过检查文件中是否有 '.' 来过滤掉文件中的目录吗?

任何想法都会有所帮助,我更希望我只使用标准库来完成这项任务。

最佳答案

看看os.walk() , 它允许您访问每个目录并获取您访问的每个目录的文件列表和子目录列表。

以下是您只能下降一个级别的方法:

for root, dirs, files in os.walk(path):
# do whatever you want to with dirs and files
if root != path:
# one level down, modify dirs in place so we don't go any deeper
del dirs[:]

关于python - 使用python获取子目录和文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10820715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com