Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found something on google but it not working on C# Console Application

What I found:

string appPath = Path.GetDirectoryName(Application.ExecutablePath);

How I can get application directory using c# Console Application?

share|improve this question

3 Answers

up vote 1 down vote accepted

If you still want to use Application.ExecutablePath in console application you need to:

  1. Add a reference to System.Windows.Forms namespace
  2. Add System.Windows.Forms to your usings section

    using System;
    using System.IO;
    using System.Windows.Forms;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                string appDirectory = Path.GetDirectoryName(Application.ExecutablePath);
                Console.WriteLine(appDirectory);
            }
        }
    }
    

Also you can use Directory.GetCurrentDirectory() instead of Path.GetDirectoryName(Application.ExecutablePath) and thus you won't need a reference to System.Windows.Forms.

If you'd like not to include neither System.IO nor System.Windows.Forms namespaces then you should follow Reimeus's answer.

share|improve this answer

Application is not available for Console Applications, it's for windows forms.

To get the working directory you can use

Environment.CurrentDirectory

Also to get the directory of the executable, you could use:

AppDomain.CurrentDomain.BaseDirectory
share|improve this answer

Try Directory.GetCurrentDirectory

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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