Home »
.Net »
C# Programs
C# program to get the logical drives of computer system using Environment class
Here, we are going to learn how to get the logical drives of computer system using Environment class in C#.Net?
Submitted by Nidhi, on April 23, 2021
To get the logical drives of the computer system using the Environment class – we use the GetLogicalDrives() method of the Environment class.
Syntax:
string[] Environment.GetLogicalDrives();
Parameter(s):
This method does not accept any parameter.
Return value:
This method returns an array of strings that contains the name of logical drives of the computer system.
Program:
The source code to get the logical drives of computer system 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[] logicalDrives;
logicalDrives = Environment.GetLogicalDrives();
Console.WriteLine("Logical Drives of computer:");
foreach (string drive in logicalDrives)
{
Console.WriteLine("\t" + drive);
}
}
}
Output:
Logical Drives of computer:
C:\
D:\
E:\
F:\
H:\
Press any key to continue . . .
C# Environment Class Programs »