If Not Directory.Exists(GetFolderPath(SpecialFolder.ApplicationData) & "\MineCafe") Then
Directory.CreateDirectory(GetFolderPath(SpecialFolder.ApplicationData) & "\MineCafe")
End If
If Not Directory.Exists(GetFolderPath(Application.StartupPath) & "\Config") Then
Directory.CreateDirectory(GetFolderPath(Application.StartupPath) & "\Config")
End If

If Not Directory.Exists(GetFolderPath(Application.StartupPath) & "\Config") Then
Directory.CreateDirectory(GetFolderPath(Application.StartupPath) & "\Config") End If
If Not Directory.Exists(GetFolderPath(SpecialFolder.ApplicationData) & "\MineCafe") Then
Directory.CreateDirectory(GetFolderPath(SpecialFolder.ApplicationData) & "\MineCafe") End If
If Not IO.Directory.Exists(IO.Path.Combine(Application.StartupPath, "Config")) Then
IO.Directory.Create(IO.Path.Combine(Application.StartupPath, "Config"))
End If