Application.StartupPath Proprietà

Definizione

Ottiene il percorso del file eseguibile che ha avviato l'applicazione, non comprensivo del nome dell'eseguibile.

public:
 static property System::String ^ StartupPath { System::String ^ get(); };
public static string StartupPath { get; }
member this.StartupPath : string
Public Shared ReadOnly Property StartupPath As String

Valore della proprietà

String

Percorso del file eseguibile che ha avviato l'applicazione.

Questo percorso sarà diverso a seconda che l'applicazione Windows Forms venga distribuita usando ClickOnce. ClickOnce applicazioni vengono archiviate in una cache dell'applicazione per utente nella directory C:\Documents e Impostazioni\ username. Per altre informazioni, vedere Accesso ai dati locali e remoti nelle applicazioni ClickOnce.

Esempio

L'esempio di codice seguente ottiene questa proprietà e visualizza il relativo valore in una casella di testo. L'esempio richiede che textBox1 sia stato inserito in un modulo.

private:
   void PrintStartupPath()
   {
      textBox1->Text = String::Concat( "The path for the executable file",
        " that started the application is: ", Application::StartupPath );
   }
private void PrintStartupPath() {
    textBox1.Text = "The path for the executable file that " +
       "started the application is: " +
       Application.StartupPath;
 }
Private Sub PrintStartupPath()
   textBox1.Text = "The path for the executable file that " & _
      "started the application is: " & _
      Application.StartupPath
End Sub

Si applica a