Environment.SystemDirectory Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает полный путь к системному каталогу.
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".