vote up 2 vote down star

My application requires that I have access to the file system. Regardless if the code runs on a web server or a console app, how can I get the root directory the application is running in. Something like C:\TheApplication...

Thanks!

flag

3 Answers

vote up 7 vote down check

Easiest is probably:

System.Reflection.Assembly.GetExecutingAssembly().Location

Hope this helps,

-Oisin

link|flag
Ahhhhh...I have my idiot hat on today ;) Totally forgot about that! – DDiVita Oct 30 at 20:05
Out of curiosity, I wonder what is returned when the executing assembly is in the Global Assembly Cache? – jdk Oct 30 at 20:58
vote up 0 vote down

You can try this:

String path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

You can read more about the two classes here:

link|flag
vote up 0 vote down

Even easier:

string myPath = Application.ExecutablePath;

For winforms application, this is always set.

link|flag
I'm not a C# programmer, and I haven't looked up the docs, but just from the name of that I would expect it to return the path to the executable file, rather than the current working directory. I suspect the OP wants the working directory. – rmeador Oct 30 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.