I would like to select several files on my desktop (or any other folder) and pass their names to my application.
More specifically, I’ve added a key to the registry such that when I right click on a jpeg file I see a new “Transform” option that actually runs my application.
The question is how can I pass all selected files names to my application ?
Thanks a lot !
They should be passed by windows. Look at the command line arguments passed to your application at start up. ie. in your Main function that has a parameter of string[] args.
To illustrate: