Get all logical drives in CSharp

Description

The following code shows how to get all logical drives.

Example


  //  w w  w  . j av a  2 s .  c o  m

using System;
using System.IO;

class MaionClass
{
  public static void Main(String[] args)
  {
    string[] drives = Directory.GetLogicalDrives();
    Console.WriteLine("Here are your drives:");
    foreach(string s in drives)
    {
      Console.WriteLine("--> {0}", s);
    }

  }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    IO »




File Attribute
File Security
Directory Attribute
Directory Recursive
Binary File
Text Field
Buffered IO
Create Copy Delete Move
CSV
Drive
File System Watcher
Isolated Storage
MemoryStream
Serialize
Zip