Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Function IsFolderNetwork(ByVal path As String) As Boolean
Dim root As String
root = path.Substring(0, 3)
Dim retVal As Boolean = False
Dim allDrives() As System.IO.DriveInfo = System.IO.DriveInfo.GetDrives()
Dim d As System.IO.DriveInfo
For Each d In allDrives
Console.WriteLine("Drive {0}", d.Name)
Console.WriteLine(" File type: {0}", d.DriveType)
If root.Equals(d.Name) And d.DriveType.ToString.Equals("Network") Then
retVal = True
End If
Next
Return retVal
End Function