I need to import (read) a csv from a path. Each csv per day is saved as yyyymmdd_filename.csv in C:\
Using
pd.read_csv('C:/yyyymmdd_filename.csv')
I can import the file of a current date
However, I want to assign a variable date = today()
and run the file to import the csv.
So I imagine it would look something like this
pd.read_csv('C:/' + date + '*filename.csv')
Is this possible to do using pd.read_csv? if not what should I use