vote up 7 vote down star

How do I find out what directory my console app is running in with C#?

flag

Shouldn't these have been posted as two distinct questions? – Atif Aziz Sep 18 '08 at 22:16
edited for clarity – John Sheehan Sep 18 '08 at 22:29

8 Answers

vote up 15 vote down check

To get the directory where the .exe file is:

AppDomain.CurrentDomain.BaseDirectory

To get the current directory:

Environment.CurrentDirectory
link|flag
vote up 4 vote down

Depending on the rights granted to your application, whether shadow copying is in effect or not and other invocation and deployment options, different methods may work or yield different results so you will have to choose your weapon wisely. Having said that, all of the following will yield the same result for a fully-trusted console application that is executed locally at the machine where it resides:

Console.WriteLine( Assembly.GetEntryAssembly().Location );
Console.WriteLine( new Uri(Assembly.GetEntryAssembly().CodeBase).LocalPath );
Console.WriteLine( Assembly.GetEntryAssembly().Location );
Console.WriteLine( Environment.GetCommandLineArgs()[0] );
Console.WriteLine( Process.GetCurrentProcess().MainModule.FileName );

You will need to consult the documentation of the above members to see the exact permissions needed.

link|flag
vote up 3 vote down

In .NET, you can use System.Environment.CurrentDirectory to get the directory from which the process was started. System.Reflection.Assembly.GetExecutingAssembly().Location will tell you the location of the currently executing assembly (that's only interesting if the currently executing assembly is loaded from somewhere different than the location of the assembly where the process started).

link|flag
vote up 2 vote down

On windows (not sure about Unix etc.) it is the first argument in commandline.

In C/C++ firts item in argv*

WinAPI - GetModuleFileName(NULL, char*, MAX_PATH)

link|flag
Yes, it's the same in .NET, too. First arg is always the full path of the executable. – Adam Neal Sep 19 '08 at 0:29
vote up 0 vote down

Check this out.

link|flag
vote up 0 vote down

Application.StartUpPath;

link|flag
care to link to some documentation? – John Sheehan Feb 19 at 5:39
vote up 0 vote down

Thank you Hallgrim.

link|flag
vote up -1 vote down

You will need to specify what language your app is written in.

link|flag
The question is in the .net category, so I suppose he means C# – Yaba Sep 18 '08 at 21:45
I figured it was going to be a framework class that didn't really matter what language I was using – John Sheehan Sep 18 '08 at 21:46

Your Answer

Get an OpenID
or

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