鱼C论坛

 找回密码
 立即注册
查看: 2456|回复: 5

递归函数返回问题

[复制链接]
发表于 2021-2-23 13:46:12 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
借一鱼油的问题, 想得到结果, 于是需要这个递归函数返回结果, 但不通知怎么弄, 请大神帮忙
我现在是想让这个函数返回这么目标文件的路径,
因为可能有多个, 可以用列表的形式返回,
这能实现返回吗?

递归函数如下
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)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-2-23 13:57:55 | 显示全部楼层
你建个全局变量,把结果加进去不就完了么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2021-2-23 14:04:39 | 显示全部楼层
意思是返回目标文件的完整路径,目标文件可能存在多个?
def search_file(start_dir, target, result=None):
    if result is None:
        result = []
    os.chdir(start_dir)
    for each_file in os.listdir(os.curdir):
        if each_file == target:
            result.append(os.path.join(os.getcwd(), each_file))
        if os.path.isdir(each_file):
            search_file(each_file, target, result)
            os.chdir(os.pardir)
    return result
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2021-2-23 14:17:15 | 显示全部楼层
本帖最后由 jackz007 于 2021-2-23 16:11 编辑
import os

def search_file(start_dir , target) :
    result = []
    try:
        for each_file in os . listdir(start_dir) :
            x = os . path . join(start_dir , each_file)
            if os . path . isfile(x) :
                if target . lower() == each_file . lower() :
                    result . append(x)
            elif os . path . isdir(x) :
                result += search_file(x , target)
    except Exception as e:
        print(e)
    return result

start_dir = input('请输入待查找的初始目录:') . strip()
if start_dir :
    target = input('请输入需要查找的目标文件:') . strip()
    if target :
        r = search_file(start_dir , target)
        if r :
            for x in r:
                print(x)
        else :
            print('抱歉,没有找到目标文件。')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-2-24 16:52:26 | 显示全部楼层
笨鸟学飞 发表于 2021-2-23 13:57
你建个全局变量,把结果加进去不就完了么

it's nice. thanks
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-2-24 16:53:01 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 12:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表