I am attempting to create a python desktop assistant, on of the roles is to print out any files matching the user's input. This works, but does not extract from folders within the parent directory.
def run():
p("Please enter file name\n")
a = input('> ')
import glob, os
os.chdir("H:/")
for file in glob.glob(a+'.*'):
print(file)