sunyt 发表于 2021-9-13 20:43:10

代码纠错

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

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('你输入的文件名不存在!')

sunyt 发表于 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('你输入的文件名不存在!')


感谢提供思路{:10_256:}
页: [1]
查看完整版本: 代码纠错