based on this I am loading multiple files of a folder into one dataframe:
import pandas as pd
files = glob.glob("TransactionData\Promorelevant*.csv")
dfs = [pd.read_csv(f, header=None, sep=";") for f in files]
salesdata = pd.concat(dfs,ignore_index=True)
My original windows folder looks like this:
A-2017-05-08
B-2017-05-09
...
So it is sorted based on a datestemp (which is in the filename). Is this order also kept while reading the file? I need this order to apply a filter later on, so that I know when for an entry it appears upper in the dataframe it has to filter out, if it also appears later.