课后30讲第二题
import osdef search_file(start_dir, target) :
os.chdir(start_dir)
real_file = os.path.splitext(target)
for each_file in os.listdir(os.curdir) :
for each in os.path.splitext(each_file):
if each == real_file :
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)
我把这个改成不包含后缀,只搜索文件名,用时会特别长,应该怎么改呢
改成这样就好了:
import os
def search_file(start_dir, target):
os.chdir(start_dir)
# real_file = os.path.splitext(target)# 改成不要后缀的这个代码就可以不用了
for each_file in os.listdir(os.curdir):
each = os.path.splitext(each_file)
if each == 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)
你这里的for each in os.path.splitext(each_file) for 循环是错误的,你把分隔后的字符串拿去循环
那么 for 循环过程中是一个字符一个字符的拿去循环的 Twilight6 发表于 2020-7-29 14:55
改成这样就好了:
明白了,谢谢
页:
[1]