Tagged Questions

0
votes
2answers
34 views

Getting logical drives

I use following code to get logical drives: string[] strDrives = Environment.GetLogicalDrives(); but when I want to iterate through it, an exception occurs, with the message: D …
1
vote
1answer
62 views

System.IO.DriveInfo.GetDrives() hangs with disconnected network drives

Hi, I am writing a file manager in .NET 3.5. At startup, the application must enumerate available drives. I am using DriveInfo.GetDrives to do that. Unfortunately my users lament …
0
votes
0answers
41 views

wireless hard drives. [closed]

I have 2 PCs (windows xp professional & vista home premium) and a new IMAC (OS X 10.5.8 // leopard). I'm looking to purchase a wireless hard drive and I'd like to know your th …
0
votes
3answers
171 views

Locking removable drive?

Friends, How to lock/unlock(software based) removable disk/drives in VB6? I need to know any specific win32 routines are there for this purpose?
0
votes
1answer
23 views

Creating drives to remote resources in windows?

There does not appear to be any good software to mount an FTP to a local drive letter (see here for details SF Question) so I was thinking why not just write it myself, but I have …
0
votes
2answers
147 views

Network Drive label

Hello, I'm trying to get the label of some network resources mapped as drives. When I use DriveInfo.GetDrives(), local volumes have the VolumeLabel filled parameter as expected, bu …
4
votes
3answers
845 views

Enumerating all available drive letters in Windows

Hi! I want to enumerate all available drive letters (which aren't already taken) in Windows using VC++. How can I do this?
4
votes
8answers
816 views

Advertised disk space vs actual disk space

Why is it that advertised disk space is almost always higher than the disk space reported by the UI? For example, I have an "80 gb" hard drive, but the iTunes UI indicates only 74 …
2
votes
5answers
997 views

How to match linux device path to windows drive name?

Hi, I'm writing an application that on some stage performs low-level disk operations in Linux environment. The app actually consists of 2 parts, one runs on Windows and interacts …