Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Problems with mapped drives


Message #1 by "Kevin Quigley" <kevinq@j...> on Fri, 22 Nov 2002 11:37:58
Hello,

I am having problems with the filesystemobject, if I use a,c or d it finds 
the drive. The following results in 'Drive Exists'

                If fs.DriveExists("a") Then
			Response.Write ("Drive exists.")
		Else
			Response.Write ("Drive  doesn't exist.")
		End If

But if I try it with a mapped drive ie k

                If fs.DriveExists("k") Then
			Response.Write ("Drive exists.")
		Else
			Response.Write ("Drive  doesn't exist.")
		End If

Then I get "Drive  doesn't exist."

Can anyone help?

Thanks.

  Return to Index