How can I add whole folder and its subdirectories in a visual c++ project? I am using visual studio 2010 professional. I mean you can add files by using Add Existing I
Ask more precisely, what you want to do? if you want to open a file within that folder you can use:
FILE *p;
p=fopen(FILEPATH,OPENINGMODE);
fclose(p);
The quickest way that I know of is to
You may have to do the folder and the files separately, but you can select multiple files at once.