Checking to see if drive exists (mapped drive)
Hi All,
You know the way that you can map a drive on your computer to a remote shared directory every time the PC starts up.
Is there any way of checking in VB that this mapping has occured.
And if it hasnt is there a way to do it through VB?.
Thanks in advance,
Ray.
P.S. Its a very simple backup program that xcopys files to remote shared directory.
Re: Checking to see if drive exists (mapped drive)
Quote:
Originally posted by dermodyr
....
P.S. Its a very simple backup program that xcopys files to remote shared directory.
hehe nothing beats xcopy when it comes to copy files... I use it too.. but I only use bat files running it :)
Code:
c:
cd c:\util\backuptool
xcopy c:\_PVRRP_\*.* /D /E /C /I /H /R /Y D:\_PVRRP_ > D:\_PVRRP_\_PVRRP_.LOG
very fast :)