Getting name of file with C++ application

115 Views Asked by At

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!

1

There are 1 best solutions below

0
On

Windows will in this case run your application with the name of the supplied file as one of its command-line parameters.

your_application.exe clicked_file.ext

You probably recall that the main() function has a prototype that goes like

int main(int argc, char** argv)

This version of main() allows you to handle command-line parameters. In your case, the name of the file parameter should be at argv[1].