FileExists

  • Thread starter Thread starter mp
  • Start date Start date
M

mp

In the c# ide, if I search help for a fileExists method I get
Microsoft.VisualBasic.FileIO as the object to use
is there no native c# object for fileexsists, FolderExists etc functions?
thanks
mark
 
mp said:
In the c# ide, if I search help for a fileExists method I get
Microsoft.VisualBasic.FileIO as the object to use
is there no native c# object for fileexsists, FolderExists etc functions?
thanks
mark
found it ("FolderExists" )
System.Io.Directory.Exists(path)
thanks anyway
mark
 
Back
Top