hi experts..
I have a landing directory that receives files from other systems. some generate new filename, but some use the same filename & overwriting the old ones.
every 1hr, I want my AutoIT to detect new files only into a variable.
previously, I thought of running dir /b > filelist.txt, so i can compare the last hour filelist.txt with the current list.. but this can't work with files of the same names.
so, I created a [work] folder, xcopy /d [landing]*.csv to [work]*.csv
this command gave me the list of new files, but i need to copy the files first..
any suggestions for better ways..?
---
once i have the list of new files in variable/array, i will need to loop & run other processing.. this part is not a problem with me.
thanx in advance..