Tagged Questions
The driveinfo tag has no wiki summary.
8
votes
7answers
15k views
How to correctly convert filesize in bytes into mega or gigabytes?
I'm using the DriveInfo class in my C# project to retrieve the available bytes on given drives. How to I correctly convert this number into Mega- or Gigabytes? Dividing by 1024 will not do the job I ...
4
votes
2answers
325 views
Set Drive VolumeLabel
I am working on a small utility where I would like to change the volume label on flash drives that are connected to the computer. I know that DriveInfo is capable of doing it but I am at a loss as for ...
4
votes
2answers
2k views
Mapped network drives cannot be listed in C#
I am trying to list all local drives in my application, and DriveInfo.GetDrives give back the local drive letters, and I need the mapped drives too.
Currently I have: C:, D:, and G: (HDD), E: and F: ...
3
votes
1answer
150 views
LINQ enumeration of local dirves using DriveInfo
I know there are many ways to accomplish what I am trying to do here, but I wanted to try it with LINQ, and am seeing some odd (to me) results. Hoping someone here has some wisdom to offer me.
Goal ...
1
vote
1answer
48 views
Drive not ready condition while DVD media insterted. Why does this happen?
I have this code:
DriveInfo dr = new DriveInfo(@"E:\");
if (dr.IsReady == false)
{
MessageBox.Show("Drive E: is not ready. Please insert a blank DVD medium.");
}
So i insert a blank DVD in ...
1
vote
4answers
68 views
Check if there is more than x bytes on ANY drive c#
I'm kinda new to this so I'll just get to it.
I'm trying to figure out how to check if ANY drive has 30 GB disk space,
So far I can't seem to get it to do more than just checking the C: drive.
...
1
vote
1answer
763 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 ...
1
vote
4answers
4k views
How to get the list of removable disk in c#?
I want to get the list of removable disk in c#. I want to skip the local drives.
Because i want the user to save the file only in removable disk.
Thanks. Urgent
0
votes
1answer
37 views
Device is not ready error on DriveInfo.DriveFormat
i have that method that retrieve the removable devices information which are NTFS :
private void getdriverinfo()
{
// get the usb flash driver
foreach (DriveInfo driveInfo in ...
0
votes
4answers
86 views
Formatting the result of DriveInfo's TotalSize in C#
So we all know that the following code will return a long:
DriveInfo myDrive = new DriveInfo("C:\\");
long size = myDrive.TotalSize;
Console.WriteLine("Drive Size is: {0}", size);
The output will ...
0
votes
1answer
3k views
.Net DriveInfo() with UNC paths?
Good morning,
is there a way to get a DriveInfo instance for UNC paths (e.g. "\fors343a.ww123.somedomain.net\folder\1\") because for example...
var driveInfo = new System.IO.DriveInfo(drive);
... ...