Application.StartupPath プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリケーションを開始した実行可能ファイルの、ファイル名を含まないパスを取得します。
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
プロパティ値
アプリケーションを開始した実行可能ファイルのパス。
このパスは、ClickOnceを使用してWindows フォーム アプリケーションをデプロイするかどうかによって異なります。 ClickOnceアプリケーションは、C:\Documents および 設定 username ディレクトリのユーザーごとのアプリケーション キャッシュに\格納されます。 詳細については、ローカルへのアクセスとリモート データには、ClickOnce アプリケーション を参照してください。
例
次のコード例では、このプロパティを取得し、その値をテキスト ボックスに表示します。 この例では、 textBox1
フォームに配置されている必要があります。
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