Gets the path for the executable file that started the application, not including the executable name.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Syntax . . :: . String
The path for the executable file that started the application.
This path will be different depending on whether the Windows Forms application is deployed using ClickOnce. ClickOnce applications are stored in a per-user application cache in the C:\Documents and Settings\username directory. For more information, see Accessing Local and Remote Data in ClickOnce Applications.
Public Shared ReadOnly Property StartupPath As Stringpublic static string StartupPath { get; }public:
static property String^ StartupPath {
String^ get ();
}static member StartupPath : string
Property Value
Type: SystemThe path for the executable file that started the application.
This path will be different depending on whether the Windows Forms application is deployed using ClickOnce. ClickOnce applications are stored in a per-user application cache in the C:\Documents and Settings\username directory. For more information, see Accessing Local and Remote Data in ClickOnce Applications.
Examples
The following code example gets this property and displays its value in a text box. The example requires that textBox1 has been placed on a form.
Private Sub PrintStartupPath()
textBox1.Text = "The path for the executable file that " & _
"started the application is: " & _
Application.StartupPath
End Sub
private void PrintStartupPath() {
textBox1.Text = "The path for the executable file that " +
"started the application is: " +
Application.StartupPath;
}
private:
void PrintStartupPath()
{
textBox1->Text = String::Concat( "The path for the executable file",
" that started the application is: ", Application::StartupPath );
}
.NET Framework Security
- FileIOPermission
for getting the path. Associated enumeration: FileIOPermissionAccess
. . :: . PathDiscovery
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.