LANDLORD Home » Tutorial » Create Folder And Check Exist VB.NET Create Folder And Check Exist VB.NET Wednesday, April 17, 2019 How to create folder by using VB.NET If(Not System.IO.Directory.Exists(YourPath)) Then System.IO.Directory.CreateDirectory(YourPath) End If
Post a Comment