I have a folder with multiple sub-folders each named with the date it was created e.g:- "18-07-2018".
Path to folder from root :- "/Analytics/Predictive_Analysis/"
There are multiple files inside each of these sub folders. Each of these sub-folders contains an excel sheet with the same name "activity_log_dtl" having equal number of columns.
I intend to create a single dataframe using the data from all "activity_log_dtl" excel sheets. I can proceed with creating separate dataframes for each "activity_log_dtl" excel and then merging/concating them into a single dataframe. But I intend to create a single dataframe without the need to create diferent dataframes and then merging them.
Please suggest.