0

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?

Harsha Biyani
  • 6,633
  • 9
  • 33
  • 55
  • Your code lacks a closing parenthesis. You would have to `os.path.getctime()` the files to find their creation date. – tripleee Apr 08 '22 at 06:35

0 Answers0