Environment.SystemDirectory Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft den voll gekennzeichneten Pfad des Systemverzeichnisses ab.
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
Eigenschaftswert
Eine Zeichenfolge mit einem Verzeichnispfad.
Beispiele
Im folgenden Beispiel wird das Systemverzeichnis des Computers angezeigt, auf dem das Codebeispiel ausgeführt wird. (Das Systemverzeichnis wird aus Sicherheitsgründen in der Beispielausgabe weggelassen.)
// 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
'
Hinweise
Ein Beispiel für den zurückgegebenen Wert ist die Zeichenfolge "C:\WINDOWS\System32".