Check Mapped Drive is Connected

  • Thread starter Thread starter Ben
  • Start date Start date
B

Ben

Hi

I need to check that a mapped drive is connected before continuing some
code.

How can i do this?

Many thanks
B
 
This soluction is for framework 2

In FrameWork 1.1

Dim a As System.IO.Directory

if a.Exists("z:\") then
msgbox("is connected ")
else
....
 
Back
Top