Application.StartupPath プロパティ
アプリケーションを開始した実行可能ファイルの、ファイル名を含まないパスを取得します。
Public Shared ReadOnly Property StartupPath As String
[C#]
public static string StartupPath {get;}
[C++]
public: __property static String* get_StartupPath();
[JScript]
public static function get StartupPath() : String;
プロパティ値
アプリケーションを開始した実行可能ファイルのパス。
使用例
[Visual Basic, C#, C++] このプロパティを取得し、プロパティ値をテキスト ボックスに表示する例を次に示します。この例は、 textBox1
が既にフォームに配置されていることを前提としています。
Private Sub PrintStartupPath()
textBox1.Text = "The path for the executable file that " & _
"started the application is: " & _
Application.StartupPath
End Sub
[C#]
private void PrintStartupPath() {
textBox1.Text = "The path for the executable file that " +
"started the application is: " +
Application.StartupPath;
}
[C++]
private:
void PrintStartupPath() {
textBox1->Text =
String::Concat(S"The path for the executable file that started the application is: {0}",
Application::StartupPath);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
.NET Framework セキュリティ:
- FileIOPermission (パスを取得するために必要なアクセス許可) FileIOPermissionAccess.PathDiscovery (関連する列挙体)
参照
Application クラス | Application メンバ | System.Windows.Forms 名前空間