Environment.SystemDirectory プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
システム ディレクトリの絶対パスを取得します。
public:
static property System::String ^ SystemDirectory { System::String ^ get(); };
public static string SystemDirectory { get; }
static member SystemDirectory : string
Public Shared ReadOnly Property SystemDirectory As String
プロパティ値
ディレクトリのパスを格納している文字列。
例
次の例では、コード例を実行するコンピューターのシステム ディレクトリを表示します。 (セキュリティ上の理由から、出力例からシステム ディレクトリは省略されています)。
// Sample for the Environment::SystemDirectory property
using namespace System;
int main()
{
Console::WriteLine();
// <-- Keep this information secure! -->
Console::WriteLine( "SystemDirectory: {0}", Environment::SystemDirectory );
}
/*
This example produces the following results:
SystemDirectory: C:\WINNT\System32
*/
// Sample for the Environment.SystemDirectory property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
// <-- Keep this information secure! -->
Console.WriteLine("SystemDirectory: {0}", Environment.SystemDirectory);
}
}
/*
This example produces the following results:
SystemDirectory: C:\WINNT\System32
*/
// Sample for the Environment.SystemDirectory property
open System
// <-- Keep this information secure! -->
printfn $"\nSystemDirectory: {Environment.SystemDirectory}"
// This example produces the following results:
// SystemDirectory: C:\WINNT\System32
' Sample for the Environment.SystemDirectory property
Class Sample
Public Shared Sub Main()
Console.WriteLine()
' <-- Keep this information secure! -->
Console.WriteLine("SystemDirectory: {0}", Environment.SystemDirectory)
End Sub
End Class
'
'This example produces the following results:
'
'SystemDirectory: C:\WINNT\System32
'
注釈
返される値の例として、文字列 "C:\WINDOWS\System32" があります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET