Tagged Questions
The drive-letter tag has no wiki summary.
4
votes
2answers
610 views
Getting CD Drive letter in VB.Net
I am using the following code to get a list of the letters for each drive on my computer. I want to get the drive letter of CD Drive from this list. Please advise how to check it.
The code I am ...
4
votes
1answer
472 views
Programatically check whether a drive letter is a shared/network drive
I searched a while but found nothing that helped me. Is there a way to check whether a drive letter stands for a shared drive/network drive or a local disc in python? I guess there is some windows api ...
3
votes
3answers
541 views
Programmatically assign new letter to existing drive with C++
I want to change a drive letter. For example, I can use diskpart to assign a new letter to a drive (a USB disk or a new hard disk).
How can I implement it in C/C++?
2
votes
1answer
78 views
Drive Letter vs. DevicePath
I'm searching about this since last week, almost all links about DriveLetter x DevicePath/Volume/Device ID/whatever are purple for me.
I'm developing an application that List some sotorage devices ...
2
votes
2answers
185 views
How to get the drive letter from a full name of the drive
How could the drive letter (e.g. F:\) be obtained from a known full name (if it is present) of a drive (e.g. WORKMEMORYSTICK) using C# under Windows?
Even the other way around would be a start.
2
votes
2answers
157 views
What is the maximum length of a Windows XP drive label?
Question is pretty much self-explanatory. I'm working with naming USB drives if that matters.
Thanks.
2
votes
2answers
1k views
Resolve Windows drive letter to a path (subst and network)
I wonder if there is a universal way of resolving a path using a drive letter (such as X:\foo\bar.txt) into its equivalent UNC path, which might be one of the following:
X:\foo\bar.txt if X: is a ...
1
vote
1answer
606 views
Portable Device Path on Windows
I've actually got an Windows/Java Question. I've got a plugged-in device which I want to access via Java. Normally you can access an e.g. USB-Stick via the Drive letter... but this tablet is ...
0
votes
1answer
23 views
IMAPI2 How to to associate the UniqueID with the drive letter
I have the following code:
foreach (string uniqueRecorderID in discMaster)
{
MsftDiscRecorder2 discRecorder2 = new MsftDiscRecorder2();
...
0
votes
2answers
175 views
Get drive letter from filename in Windows
Is there a Windows API function to extract the drive letter from a Windows path such as
U:\path\to\file.txt
\\?\U:\path\to\file.txt
etc?
0
votes
0answers
49 views
Preventing office from using MSDAIPP
I have a drive letter mounted to a webdav url (using basic authentication), I pass the credentials when executing the net use command. This is all working fine, when looking at my tcpdump i can see ...
0
votes
0answers
59 views
Visual Studio 2008: Output window breaks “Go to location” on network
I was previously developing a multi-project VS2008 solution on a WinXP (32 bit) "single core" laptop. Last week I upgraded to a Win7 Pro (64bit) dual hexacore workstation and have moved all projects ...
0
votes
2answers
611 views
Use windows drive letters in maven install:install-file
When I try to install a custom jar with the following maven command then it will fail misirably:
mvn -X install:install-file -Dfile=D:\Work\...
Howerver the following does work:
mvn -X ...
0
votes
2answers
852 views
List USB drive letters in VC++
I want to list USB drives in my machine.
How to do it in VC++. Can u give a sample code.