您可以使用os module. 在里面os.walk,您可以使用所需的路径,我正在使用当前目录。import osfor path, b, files in os.walk(os.getcwd()): print('The path is ', path) for file in files: if 'index' in file or 'export' in file: print(file)