Home »
.Net »
C# Programs
C# - Environment.SystemDirectory Property with Example
In this tutorial, we will learn about the C# Environment.SystemDirectory property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
Environment.SystemDirectory Property
The Environment.SystemDirectory property returns a string value that contains a fully qualified path of the system directory.
Syntax
string Environment.SystemDirectory
Parameter(s)
Return Value
This property returns string that contains a fully qualified path of the system directory.
C# Example of Environment.SystemDirectory Property
The source code to get the path of system directory using Environment class is given below. The given program is compiled and executed successfully.
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
string systemDir = "";
systemDir = Environment.SystemDirectory;
Console.WriteLine("System Directory:\n" + systemDir);
}
}
Output
System Directory:
C:\Windows\system32
Press any key to continue . . .
C# Environment Class Programs »