Q:

C# program to get root directory of given directory

0

C# program to get root directory of given directory

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            string rootDir = "";

            rootDir = Directory.GetDirectoryRoot("D:/Sample/dir2/Green color");
            Console.WriteLine("Root Directory is : ("+rootDir+")");

            rootDir = Directory.GetDirectoryRoot("D:/Sample/dir2/Blue color");
            Console.WriteLine("Root Directory is : (" + rootDir + ")");

            rootDir = Directory.GetDirectoryRoot("C:/Windows/Help/Windows");
            Console.WriteLine("Root Directory is : (" + rootDir + ")");

        }
    }
}

Output

Root Directory is : (D:\)
Root Directory is : (D:\)
Root Directory is : (C:\)

Note: In above program, we need to remember, when we use "Directory" class, System.IO namespace must be included in the program.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# file handling (File class) solved programs/examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to get the list of files from given dir... >>
<< C# program to search directory in a given director...