Home »
.Net »
C# Programs
C# program to get computer drive names of given directory
In this program, we will learn how to get computer drive names using C# code? To get computer drive names, we have to use static method GetLogicalDrives() of Directory class.
Submitted by IncludeHelp, on November 13, 2017
Directory.GetLogicalDrives()
This is a method of 'Directory' class, it returns the local drive (computer drive) name.
Syntax:
string[] Directory.GetLogicalDrives();
Return value:
This method returns the array of string that contains computer drive names.
Program
using System;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
string[] drives;
drives = Directory.GetLogicalDrives();
Console.WriteLine("Computer Drives:");
for (int i = 0; i < drives.Length; i++)
{
Console.WriteLine("\t" + drives[i]);
}
}
}
}
Output
Computer Drives:
C:\
D:\
E:\
F:\
Note: In above program, we need to remember, when we use "Directory" class, System.IO namespace must be included in the program.
C#.Net Directory Class Programs »