OK, I just made this file mover and it moves the files with matching file names.
move "03 Extracted\Files\1 *.txt" "06 Edit Files\Files 1\"
This works great and this was easy.
But how do I move files that don't have matching names?
1 - dog.txt
5 - cat.txt
10 - birds.txt
45 - seats.txt
152 - rooms.txt
I would like to keep it simple. I'm thinking the easiest would be to read the numbers at the beginning of the file name.
move "03 Extracted\* - *.txt" "06 Edit Files\Files 1-9\"
move "03 Extracted\** - *.txt" "06 Edit Files\Files 10-99\"
move "03 Extracted\*** - *.txt" "06 Edit Files\Files 100-999\"
I want to move files based on the numbers in front of the filename, and into the right number folders.
How could this be written?