Whats wrong with this, doesnt make sense that it wont create the folder or files.
If PathRead() = 0 Then
MsgBox("Error Reading Path Info: One or more Paths do not exist.", MsgBoxStyle.Critical, "Path Read Error")
MsgBox("Would you like to create these files?", MsgBoxStyle.YesNo, "Create?")
If MsgBoxResult.Yes Then
MkDir("/Paths/")
System.IO.File.Create("/Paths/aPath.txt")
System.IO.File.Create("/Paths/mPath.txt")
System.IO.File.Create("/Paths/lPath.txt")
System.IO.File.Create("/Paths/wPath.txt")
End If
End If