How to monitor when files are created and then move them to different directories one by one and in sequence on Windows?
For example, I have files in C:\Temp
File names are random like File545.tmp File281.tmp File351.tmp but they are created at different times
I want to move these files one by one to specific folders in sequence like first file, the oldest one, to C:\Temp\1\ and second file, second oldest, to C:\Temp\2\ and so on. The destination folders are already exist.
How to do this?