Browse Source

Set Path as name if there's no volume label.

pull/2995/head
Jumar Macato 7 years ago
parent
commit
f4100fd8a4
No known key found for this signature in database GPG Key ID: B19884DAC3A5BF3F
  1. 3
      src/Windows/Avalonia.Win32/WindowsMountedVolumeInfoListener.cs

3
src/Windows/Avalonia.Win32/WindowsMountedVolumeInfoListener.cs

@ -35,7 +35,8 @@ namespace Avalonia.Win32
.Where(p => p.IsReady)
.Select(p => new MountedVolumeInfo()
{
VolumeLabel = p.VolumeLabel,
VolumeLabel = string.IsNullOrEmpty(p.VolumeLabel.Trim()) ? p.RootDirectory.FullName
: p.VolumeLabel,
VolumePath = p.RootDirectory.FullName,
VolumeSizeBytes = (ulong)p.TotalSize
})

Loading…
Cancel
Save