I'm simply wanting to change the directory of the current path and listing all the files/directories I'm interested in. The default dir for vs 2010 is inside the ./Projects/ directory. But I'm carrying out these 2 commands in sequence w/ the following:
...
system ("cd ../../..");
system ("dir"); //This still lists in the command window, the default Projects directory
Any advice?