How can I check a path String to see if it is on a local machine(i.e.
C:\MyDir) or on a server (i.e. \\myServer\Stuff\MyDir)?? I noticed
that when you map a network drive it show up as something like:
Stuff on 'myServer'(E:)
In Winodws Explorer. So when I get a path String, it'll look
like "E:\blah". But I want to somehow figure out if that path is on
a network drive and if it is, I'll convert it
to "\\myServer\Stuff\blah".
I messed around before and got a URL object to spit out its name
(Stuff on 'myServer'(E:)).