I imagine this should be relatively simple but I can't find any info about it... I am assuming I just don't know what to search for, but if anyone can help that would be great.
I have some files that I create myself and have given a custom extension. I have a C++ application that is supposed to be able to read and interpret these files.
If I right-click on one of this files, say "Open With" and select my C++ application exe, how do I the path information of the file I clicked on from within the application?
Thanks!
Windows will in this case run your application with the name of the supplied file as one of its command-line parameters.
You probably recall that the
main()
function has a prototype that goes likeThis version of
main()
allows you to handle command-line parameters. In your case, the name of the file parameter should be atargv[1]
.