I am launching an application with parameters in this way:
application.exe /in:"c:folder\filename1.txt" --log
application.exe /in:"c:folder\filename2.txt" --log
And that runs the first instance, waits for it to finish and then runs the second.
How can I programmatically run all the files within 'folder' in alphabetic order (Keeping the same "wait and go" logic) ?
Thanks in advance