
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check If a Directory Exists in C#
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