How do I create a folder in VB if it doesn’t exist? March 8, 2023 by Tarik If Not System.IO.Directory.Exists(YourPath) Then System.IO.Directory.CreateDirectory(YourPath) End If