Q:

C# program to check given directory exists or not

0

C# program to check given directory exists or not

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()
        {
            bool flag = false;

            flag = Directory.Exists("D:/India");

            if (flag)
                Console.WriteLine("Directory Exists");
            else
                Console.WriteLine("Directory does not exist");

            flag = Directory.Exists("D:/France");

            if (flag)
                Console.WriteLine("Directory Exists");
            else
                Console.WriteLine("Directory does not exist");
        }
    }
}

Output

Directory Exists
Directory does not exist

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 complete path of current directo... >>
<< C# program to delete an empty and a non-empty dire...