那就是工作目录没有切换,导致你的工作目录始终在初始目录,listdir() 出来的也始终是初始目录下面的文件
你的代码加了两行打印:import os
def hanshu(path,f_name):
print('当前路径'+path)
print('当前目录文件',os.listdir())
if f_name in os.listdir(path):
print('找到' + os.path.join(path,f_name))
for each in os.listdir(path):
if os.path.isdir(each):
hanshu(os.path.join(path,each),f_name)
f_path= r'D:\user\Desktop\tes'
f_name= 'tes.txt'
os.chdir(f_path)
hanshu(f_path,f_name)
结果,当前目录文件 始终没变当前路径D:\user\Desktop\tes
当前目录文件 ['tes1', 'tes2']
当前路径D:\user\Desktop\tes\tes1
当前目录文件 ['tes1', 'tes2']
找到D:\user\Desktop\tes\tes1\tes.txt
当前路径D:\user\Desktop\tes\tes2
当前目录文件 ['tes1', 'tes2']
加一个路路径切换就可以了:import os
def hanshu(path,f_name):
os.chdir(path)
print('当前路径'+path)
print('当前目录文件',os.listdir())
if f_name in os.listdir(path):
print('找到' + os.path.join(path,f_name))
for each in os.listdir(path):
if os.path.isdir(each):
hanshu(os.path.join(path,each),f_name)
f_path= r'D:\user\Desktop\tes'
f_name= 'tes.txt'
os.chdir(f_path)
hanshu(f_path,f_name)
当前路径D:\user\Desktop\tes
当前目录文件 ['tes1', 'tes2']
当前路径D:\user\Desktop\tes\tes1
当前目录文件 ['tes.txt', 'tes3']
找到D:\user\Desktop\tes\tes1\tes.txt
当前路径D:\user\Desktop\tes\tes1\tes3
当前目录文件 ['tes.txt']
找到D:\user\Desktop\tes\tes1\tes3\tes.txt
这样得考虑一个问题:就是他不会往回跑到相应节点换一个路径继续往下深度搜索
这个你就自己想了 |