tags:

views:

776

answers:

3

Is it possible to access a USB drive or Flash card without using the drive letter that Windows assigns it? I thought I read somewhere that the Volume GUID or something can be used but will that allow me to open it up in explorer once I identify it? The reason this is important to me is because there may not be enough drive letters to handle the number of drives so I want to be able to still access them.

+3  A: 

If you are using NTFS, You can create 'volume mount points' in Windows. (Similar to *NIX, if you have used that).

Mount points make a folder on your filesystem (your C drive, say) point to another volume, so "C:\usb1" could actually contain the contents of a USB drive.

There are a couple of articles on the Microsoft site which should point you on your way: How to create and use mounted drives About Volume Mount Points

andypaxo
+1  A: 

Here you go:

MOUNTVOL C:\USB: \\?\Volume{ebc79032-5270-11d8-a724-806d6172696f}\
Chris
http://technet.microsoft.com/en-us/library/cc772586.aspx
Judge Maygarden
+1  A: 

Propably this will help you too:

http://www.novell.com/coolsolutions/tip/14875.html

Chris