finder-wpf / FastSeekWpf /Core /NtfsDrive.cs
anshdadhich's picture
Upload FastSeekWpf/Core/NtfsDrive.cs
d406157 verified
namespace FastSeekWpf.Core;
public class NtfsDrive
{
public char Letter { get; set; }
public string Root { get; set; } = string.Empty;
public string DevicePath => $"\\\\.\\{Letter}:";
}