In the config_file_path I am providing providing unix file directory path, which is storing files for all dates in the dataframe as written below.
list_1 = glob.glob(os.path.join(config_file_path)
df['Config_Files'] = pd.Dataframe(list_1)
Is there anyway in which we can store files created on a specific date (say 2022-03-07) in the dataframe?