Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
C# Program to check whether a directory exists or not
Use the Directory. Exists method to check whether a directory exists or not.
Let’s say you need to check whether the following directory exists or not −
C:\Amit
For that, use the Exists() method −
if (Directory.Exists("C:\Amit")) {
Console.WriteLine("Directory Amit Exist!");
}
The following is the complete code −
Example
using System.IO;
using System;
public class Program {
public static void Main() {
if (Directory.Exists("C:\Amit")) {
Console.WriteLine("Directory Amit Exist!");
} else {
Console.WriteLine("Directory Amit does not exist!");
}
}
}
Output
Directory Amit does not exist!
Advertisements
