View Single Post
  #3 (permalink)  
Old 08-23-2007, 01:52 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 1,061
S.Vinothkumar is on a distinguished road
Wink Re: How to check a particular folder exsist or Not using c#?

We can check the folder exists or not in .Net 2.0 by using the following single line of code.

Code:
if (!Directory.Exists("C:/vinoth"))
 {
    Directory.CreateDirectory("C:/vinoth");
 }
That's it...
__________________
S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!
Reply With Quote