首页上一页 1 下一页尾页 1 条记录 1/1页
[用户提问]求教,Python中目录操作中的dir的全称是什么?
发表在Python答疑区
2023-02-11
是否精华
是
否
版块置顶:
是
否
Python中目录操作中的dir的全称是什么?
import os # 导入os模块 path = "C:\\demo" # 指定要遍历的根目录 print("【",path,"】 目录下包括的文件和目录:") for root, dirs, files in os.walk(path, topdown=True): # 遍历指定目录 for name in dirs: # 循环输出遍历到的子目录 print("●",os.path.join(root, name)) for name in files: # 循环输出遍历到的文件 print("◎",os.path.join(root, name))
于2023-02-11 18:35:04编辑