Nyelv

Environment.SystemDirectory Tulajdonság

Definíció

Lekéri a rendszerkönyvtár teljes elérési útját.

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

Tulajdonság értéke

Könyvtár elérési útját tartalmazó sztring.

Példák

Az alábbi példa a példakódot futtató számítógép rendszerkönyvtárát jeleníti meg. (A rendszerkönyvtár biztonsági okokból hiányzik a példakimenetből.)

// 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
'

Megjegyzések

A visszaadott értékre példa a "C:\WINDOWS\System32" sztring.

A következőre érvényes: