Get the files from the root directory in CSharp

Description

The following code shows how to get the files from the root directory.

Example


   /*from w w  w .j  av a  2  s. co m*/

using System;
using System.IO;

class MainClass
{
  public static void Main() 
  {
    string[] aFiles = Directory.GetFiles("c:\\");

    foreach (string s in aFiles)
      Console.WriteLine(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