Get a list of all file names including subfolders and export to a text file
To get a list of all files, including files inside subfolders that are ordered by date modified from the folder you are currently in you can type the following into your Windows cmd line(press windows key and type cmd):
dir /o:gd /S
'/o' is the 'order' filter.
'g' will group results by directory/files so all directory listings will be first and then files so it's easier to read.
'd' will order the files by date modifed.
'/S' will go through all subfolders.