3216207773 发表于 2020-9-20 22:27:25

调用后返回上一层目录

import os

def search_file(start_dir, target) :
    os.chdir(start_dir)
   
    for each_file in os.listdir(os.curdir) :
      if each_file == target :
            print(os.getcwd() + os.sep + each_file) # 使用os.sep是程序更标准
      if os.path.isdir(each_file) :
            search_file(each_file, target) # 递归调用
            os.chdir(os.pardir) # 递归调用后切记返回上一层目录

start_dir = input('请输入待查找的初始目录:')
target = input('请输入需要查找的目标文件:')
search_file(start_dir, target)

#为什么递归调用后切记返回上一层目录?

疾风怪盗 发表于 2020-9-20 22:27:26

https://fishc.com.cn/forum.php?mod=viewthread&tid=91188

https://fishc.com.cn/thread-79928-1-1.html

看看同样问题帖子的回复
页: [1]
查看完整版本: 调用后返回上一层目录