I want to read csv files from a folder based on condition. I just want to read csv files that include “1441” in the filename. I used fnmatch, but it doesn’t work. Can anyone help?
path_to_parent = r"C:\Users\Desktop\books/chapter_1"
for csv_file in os.listdir(path_to_parent):
if fnmatch.fnmatch(csv_file,'1441'):
my_file = pd.read_csv(path_to_parent+csv_file)
else:
print('error')
You need wildcards around
1441
to match the rest of the filename. Otherwise it's looking for the exact filename1441
.Also, you're not adding the directory separator between
path_to_parent
andcsv_file
when you concatenate them. It's best to useos.path.join()
for portability.I also recommend using
glob.glob()
instead. It will do the wildcard matching for you, and it will return full paths so you don't have to concatenate each time through the loop.