Visual Studio 2008, dumb problem with relative paths - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:56:04Zhttp://stackoverflow.com/feeds/question/472104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/472104/visual-studio-2008-dumb-problem-with-relative-paths0Visual Studio 2008, dumb problem with relative pathsBen2009-01-23T06:46:21Z2009-01-23T07:10:40Z
<p>What's happening to me is, when I run my program out of Visual studio, it can't use relative paths to find anything.</p>
<p>This is proving difficult to articulate...</p>
<p>Like, I've got program X, which opens textfile.txt, right? And if I point to textfile.txt with an absolute path, I'm fine. And if I point to it with a relative path and I compile program X, then run it directly (ie, by double-clicking programX.exe in the debug folder), I'm also fine. But, if I use a relative path and run the program out of visual studio (ie, by pressing f5), then it can't find the file.</p>
<p>Anyone know what's happening? Alternatively, can anyone suggest some decent keywords that don't collide squarely with other newbie Visual Studio issues?</p>
<p>Ben</p>
http://stackoverflow.com/questions/472104/visual-studio-2008-dumb-problem-with-relative-paths/472119#4721192Answer by Tom for Visual Studio 2008, dumb problem with relative pathsTom2009-01-23T06:53:50Z2009-01-23T06:53:50Z<p>In VS 2008 in the properties of the exe project you can specify the run directory - the directory which the exe is run from.</p>
http://stackoverflow.com/questions/472104/visual-studio-2008-dumb-problem-with-relative-paths/472122#4721222Answer by paxdiablo for Visual Studio 2008, dumb problem with relative pathspaxdiablo2009-01-23T06:54:48Z2009-01-23T07:10:40Z<p>Not sure about VS2008 but earlier version ran the program with a current directory of debug (or release, I guess) underneath your project directory. You may have to make sure you use that as the root of your path.</p>
<p>Alternatively, prepend your relative path with "..\".</p>
<p>Temporarily put a <code>system("cd");</code> inside your code to find out where it's <strong>actually</strong> running from or use <code>GetCurrentDirectory(...)</code> as suggested by Nick.</p>