Tagged Questions
The drives tag has no wiki summary.
8
votes
3answers
4k views
Enumerating all available drive letters in Windows
I want to enumerate all available drive letters (which aren't already taken) in Windows using VC++.
How can I do this?
8
votes
8answers
2k 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. I usually see ...
7
votes
3answers
2k views
Delphi - How to get list of USB removable hard drives and memory sticks?
In my application (Delphi), I need to list all the USB storage devices. These can be either flash memory sticks or external storage drives.
There is a Jvcl component JvDriveCombo, and it has the ...
4
votes
2answers
618 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 ...
3
votes
4answers
337 views
Does the transaction log drive need to be as fast as the database drive?
We are telling our client to put a SQL Server database file (mdf), on a different physical drive than the transaction log file (ldf). The tech company (hired by our client) wanted to put the ...
2
votes
2answers
362 views
IIS Virtual Directory in Azure
I've been told that you can create virtual directories in IIS hosted on Azure but I'm struggling to find any info on this as its a relatively new feature. I'd like to point the virtual directory to an ...
2
votes
1answer
349 views
How to display label of unnamed drive?
I want to get the name or label of drive.
I use this function :
function GetVolumeLabel(DriveChar: Char): string;
var
NotUsed: DWORD;
VolumeFlags: DWORD;
VolumeInfo: array[0..MAX_PATH] of ...
2
votes
6answers
2k views
How to match linux device path to windows drive name?
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 with a user and another ...
1
vote
1answer
556 views
Getting icons of Drives and Directories: Icon.ExtractAssociatedIcon(filePath) doesn't work?
If Icon.ExtractAssociatedIcon(filePath) is the only way to get icons in .NET && if it doesn't work for Drives and Directories (does it?) then how do you go about getting the icons for them?
...
1
vote
2answers
349 views
How to get drive label in Linux using C from userspace
I need to get a label for specific device using c/c++ (and no d-bus) in linux. The problem is that i can't just open device and read it's information (for extN it is very easy to get label from ...
1
vote
2answers
279 views
Check if drive is writable windows API function
Hello is there any windows API function that would return if drive is writable. Sometimes drive is visible under drives but when trying to programaticly write to it, it gives you a msg box error wich ...
1
vote
4answers
479 views
how to search media file in our system by c#?
I want to search the media files situated in my system by c#. means I want to create the search engine that will scan all drives (again small question here , how to get the drives on our system by c# ...
1
vote
1answer
764 views
System.IO.DriveInfo.GetDrives() hangs with disconnected network drives
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 lamented that, when they have ...
0
votes
1answer
164 views
Detecting USB and Floppy Drives' Letters via VBScript
I have a Vb-script which store all removable drives' letters into a variable, As you know it contains both floppy and USB drives, I want to seperate them, I mean I want to store USB Drives' Letters in ...
0
votes
1answer
138 views
Detecting Windows Drive via VBScript
I have a VBScript which detects local hard drive letters and it will store them some where. Now I want to remove the Windows Drive from it. I mean first it finds all local hard drives, then detects ...
0
votes
0answers
106 views
FindFirstFile misbehaves on 64-bit systems with mapped drives
I have written a 32-bit program that has a problem running on 64 bit Win 7 pro.
When the program runs on Win 7 and my FindFirstFile call accesses a mapped drive (whose source is a folder on an XP ...
0
votes
3answers
52 views
How disk space is allocated for an edited file
Assume I save a text file in the HDD disk storage(assume the disk storage is new and so defragmented) and the file name is A with a file size of say 10MB
I presume, the file A occupies some space in ...
0
votes
1answer
31 views
WinXP shared drives issue
I have an app in .NET that writes some really small files (2k-40k) on some network shared drives. These network shared drives are on another WinXP machine. The issue I'm having is that the app is able ...
0
votes
1answer
344 views
Ruby Get Available Disk Drives
Can anyone tell me how I can get a list of the available disk drives in ruby? I am creating an open file dialogue and need to know! Thanks in advance, ell.
0
votes
2answers
214 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:
Drive Not Ready
How ...
0
votes
4answers
550 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
36 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 very little ...
0
votes
2answers
314 views
Network Drive label
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, but in network drives it is ...