Files
git-anchor/repo-backup-util/lib/Volumes.cs
2024-01-21 14:50:44 -06:00

11 lines
200 B
C#

namespace RepoBackupUtil.Lib
{
public static class Volumes
{
public static IEnumerable<DriveInfo> GetVolumes()
{
return DriveInfo.GetDrives();
}
}
}