import os.path listOfFiles = [f for f in os.listdir() if os.path.isfile(f)]. Using pathlib from Python 3.4 import pathlib flist = [] for p in pathlib. ... <看更多>
Use import os and os.chdir to set your working directory to the unzipped folder "Recipes". Use os.listdir to check what files are stored in " ... ... <看更多>