Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DriveInfo returns path for VolumeLabel instead of the volume label name #21726

Open
eilerbit opened this issue Nov 19, 2023 · 0 comments
Open

Comments

@eilerbit
Copy link

Steps to Reproduce:
Ensure that you set Label names of your drives
Create instance of DriveInfo class or get all drives
Get .VolumeLabel property

DriveInfo[] driveInfos = DriveInfo.GetDrives();
           
foreach (DriveInfo driveInfo in driveInfos)
{
    if (driveInfo.IsReady && driveInfo.DriveType == DriveType.Removable)
    {
        Console.WriteLine(driveInfo.VolumeLabel);
    }
}

Is it a bug or just something left undeveloped:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant