是否可以将类型字符串列表转换为 DeviceInfo[]。我正在获取计算机上的逻辑驱动器列表并将其转换为列表以删除我的系统目录(我的操作系统目录)。现在我想将该列表转换回 DeviceInfo[] 因为我需要获取具有更多可用空间的逻辑驱动器。
DriveInfo[] drive = DriveInfo.GetDrives();
List<string> list = drive.Select(x => x.RootDirectory.FullName).ToList();
list.Remove(Path.GetPathRoot(Environment.SystemDirectory).ToString());
谢谢你。