up vote 2 down vote favorite
share [g+] share [fb]

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!

link|improve this question
feedback

4 Answers

up vote 9 down vote accepted

Easiest is probably:

System.Reflection.Assembly.GetExecutingAssembly().Location

Hope this helps,

-Oisin

link|improve this answer
Ahhhhh...I have my idiot hat on today ;) Totally forgot about that! – DDiVita Oct 30 '09 at 20:05
Out of curiosity, I wonder what is returned when the executing assembly is in the Global Assembly Cache? – John K Oct 30 '09 at 20:58
@jdk, just a guess, but wouldn't this return the calling EXE, rather than the assembly placing the reflection call? – harpo Mar 25 '10 at 17:19
feedback

You can try this:

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

You can read more about the two classes here:

link|improve this answer
feedback

Even easier:

string myPath = Application.ExecutablePath;

For winforms application, this is always set.

link|improve this answer
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 '09 at 20:53
feedback

I just tested out a very basic way to do this that works in both asp.net and within a windows service.

var binariesPath = string.IsNullOrEmpty(AppDomain.CurrentDomain.RelativeSearchPath) 
                    ? AppDomain.CurrentDomain.BaseDirectory // Windows Service
                    : AppDomain.CurrentDomain.RelativeSearchPath; // Asp.net
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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