D David Schwartz Sep 29, 2003 #1 How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Thanks!
How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Thanks!
A Armin Zingler Sep 29, 2003 #2 David Schwartz said: How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Click to expand... System.IO.Directory.Exists System.IO.Directory.CreateDirectory
David Schwartz said: How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Click to expand... System.IO.Directory.Exists System.IO.Directory.CreateDirectory
K Kirk Sep 29, 2003 #3 Try this sample. Dim di As New System.IO.DirectoryInfo(txtPath.text) If Not di.Exists Then di.Create() End If
Try this sample. Dim di As New System.IO.DirectoryInfo(txtPath.text) If Not di.Exists Then di.Create() End If
T Tom Shelton Sep 29, 2003 #4 How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Thanks! Click to expand... System.IO.Directory.Exists System.IO.File.Exists To create them... System.IO.Directory.Create System.IO.File.Create HTH, Tom Shelton
How can you tell if a Path exists? Is there a simple way to create a Path if it doesn't exist? Thanks! Click to expand... System.IO.Directory.Exists System.IO.File.Exists To create them... System.IO.Directory.Create System.IO.File.Create HTH, Tom Shelton