C# program to check given directory exists or not

In this program, we will learn how to check given directory is exist or not using C# code? To check directory existence, we have to use static method Exist() of Directory class.
Submitted by IncludeHelp, on November 12, 2017

Directory.Exist()

This is a method of 'Directory' class, it is used to check whether a directory exists on given path or not?

Syntax:

void Directory.Exists(string path);

Parameter(s):

  1. path - Location of directory.

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.

C#.Net Directory Class Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.