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

I would like to get the path to the execution directory of a windows forms application (ie: the directory in which the executable is located). Does anyone know of a built-in method in .Net to do this?

share|improve this question

6 Answers

up vote 5 down vote accepted

Application.Current results in an appdomain http://msdn.microsoft.com/en-us/library/system.appdomain_members.aspx

Application.Current.BaseDirectory should give you the location of the assembly

I seem to recall there being multiple ways of getting the location of the application. but this one worked for me in the past atleast (it's been a while since i've done winforms programming :/)

share|improve this answer
It should be Application.CurrentDomain. – Max Apr 20 '11 at 15:08

In VB.NET

Dim directory as String = My.Application.Info.DirectoryPath

In C#

string directory = AppDomain.CurrentDomain.BaseDirectory;
share|improve this answer
2  
The C# location will also work in VB or other languages that don't support the "My" namepsace. – Joel Coehoorn Nov 17 '08 at 14:53
@Tomas Pajonk, may I suggest changing the c# "FileName" variable to "directory"? – grenade Apr 21 '10 at 9:32
@grenade done. Thanks. – Tomas Pajonk Apr 21 '10 at 9:41

This could help;

Path.GetDirectoryName(Application.ExecutablePath);

also here is the reference

share|improve this answer

System.Windows.Forms.Application.StartupPath will solve your problem, I think

share|improve this answer

check this out

'as in import statement you have to mention the Imports System.IO & import System.Management
Imports System.IO
Imports System.Management
Public Class Form1


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        TextBox1.Text = Path.GetFullPath(Application.ExecutablePath)
        Process.Start(TextBox1.Text)

    End Sub
End Class
share|improve this answer
string apppath = 
    (new System.IO.FileInfo
    (System.Reflection.Assembly.GetExecutingAssembly().CodeBase)).DirectoryName;
share|improve this answer
Sorry, the Assembly namespace and the code display panel do not play nicely together. I hate scrollbars. – MusiGenesis Nov 17 '08 at 14:51

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.