Aug 26, 2004 #1 G golfnut1969 Member Joined Jul 25, 2004 Messages 19 Location Missouri Whats the easiest and fastest way to check for a folders existence? eg. Does the directory "D:\Work\Tools\VB" exist?
Whats the easiest and fastest way to check for a folders existence? eg. Does the directory "D:\Work\Tools\VB" exist?
Aug 26, 2004 #2 T TripleB Active member Joined Jul 19, 2004 Messages 38 Location Belgium Hey, You could use the namespace System.IO then you simply do: Directory.exists(path) for more info see: http://msdn.microsoft.com/library/d...ref/html/frlrfsystemiodirectoryclasstopic.asp greetz golfnut1969 said: Whats the easiest and fastest way to check for a folders existence? eg. Does the directory "D:\Work\Tools\VB" exist? Click to expand...
Hey, You could use the namespace System.IO then you simply do: Directory.exists(path) for more info see: http://msdn.microsoft.com/library/d...ref/html/frlrfsystemiodirectoryclasstopic.asp greetz golfnut1969 said: Whats the easiest and fastest way to check for a folders existence? eg. Does the directory "D:\Work\Tools\VB" exist? Click to expand...
Aug 26, 2004 #3 G golfnut1969 Member Joined Jul 25, 2004 Messages 19 Location Missouri Thanks, thats what I was looking for.