鱼C论坛

 找回密码
 立即注册
查看: 1971|回复: 2

[已解决]代码纠错

[复制链接]
发表于 2021-9-13 20:43:10 | 显示全部楼层 |阅读模式

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

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

x
这段代码会输出9遍
‘你输入的文件名不存在’
求大佬帮忙看看,优化一下,谢谢
import os

def find_file(dir_path, target):
    Check = 0
    os.chdir(dir_path)
    for each_filen in os.listdir(os.curdir):
        if each_filen in target:
            print(dir_path + os.sep + each_filen)
            Check = 1
        if os.path.isdir(each_filen):
            find_file(each_filen, target)
            os.chdir(os.pardir)
    if Check == 0:
        print('你输入的文件名不存在!')
        
dir_path = input('请输入初始路径:')
target = input('请输入目标文件(包括后缀名):')
find_file(dir_path, target)
最佳答案
2021-9-13 21:04:02
if Check == 0:
        print('你输入的文件名不存在!')
递归其实就是调用函数,你这一段代码是一定会执行的,你递归多少次,就执行多少次
所以说可以放到外面去判断
import os
Check = 0
def find_file(dir_path, target):
    
    os.chdir(dir_path)
    for each_filen in os.listdir(os.curdir):
        if each_filen in target:
            print(dir_path + os.sep + each_filen)
            Check = 1
        if os.path.isdir(each_filen):
            find_file(each_filen, target)
            os.chdir(os.pardir)
    
        
dir_path = input('请输入初始路径:')
target = input('请输入目标文件(包括后缀名):')
find_file(dir_path, target)
if Check == 0:
        print('你输入的文件名不存在!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-9-13 21:04:02 | 显示全部楼层    本楼为最佳答案   
if Check == 0:
        print('你输入的文件名不存在!')
递归其实就是调用函数,你这一段代码是一定会执行的,你递归多少次,就执行多少次
所以说可以放到外面去判断
import os
Check = 0
def find_file(dir_path, target):
    
    os.chdir(dir_path)
    for each_filen in os.listdir(os.curdir):
        if each_filen in target:
            print(dir_path + os.sep + each_filen)
            Check = 1
        if os.path.isdir(each_filen):
            find_file(each_filen, target)
            os.chdir(os.pardir)
    
        
dir_path = input('请输入初始路径:')
target = input('请输入目标文件(包括后缀名):')
find_file(dir_path, target)
if Check == 0:
        print('你输入的文件名不存在!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-9-14 10:13:40 | 显示全部楼层
大马强 发表于 2021-9-13 21:04
递归其实就是调用函数,你这一段代码是一定会执行的,你递归多少次,就执行多少次
所以说可以放到外面去 ...
import os

def find_file(dir_path, target):
    Check = 0
    os.chdir(dir_path)
    for each_filen in os.listdir(os.curdir):
        if each_filen in target:
            print(dir_path + os.sep + each_filen)
            Check = 1
        if os.path.isdir(each_filen):
            find_file(each_filen, target)
            os.chdir(os.pardir)
    return Check
        
dir_path = input('请输入初始路径:')
target = input('请输入目标文件(包括后缀名):')
Check = find_file(dir_path, target)
if Check == 0:
    print('你输入的文件名不存在!')

感谢提供思路
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-4 15:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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