Skip to content

Commit

Permalink
Allow mounting on ReFS volumes
Browse files Browse the repository at this point in the history
ReFS is the underlying filesystem that dev drives use and should be supported.
  • Loading branch information
winstliu committed Oct 24, 2024
1 parent 5870861 commit 67a4139
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GVFS/GVFS.Platform.Windows/ProjFSFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -378,14 +378,14 @@ public bool IsSupported(string normalizedEnlistmentRootPath, out string warning,

string pathRoot = Path.GetPathRoot(normalizedEnlistmentRootPath);
DriveInfo rootDriveInfo = DriveInfo.GetDrives().FirstOrDefault(x => x.Name == pathRoot);
string requiredFormat = "NTFS";
string[] requiredFormats = new[] { "NTFS", "ReFS" };
if (rootDriveInfo == null)
{
warning = $"Unable to ensure that '{normalizedEnlistmentRootPath}' is an {requiredFormat} volume.";
warning = $"Unable to ensure that '{normalizedEnlistmentRootPath}' is an {string.Join(" or ", requiredFormats)} volume.";
}
else if (!string.Equals(rootDriveInfo.DriveFormat, requiredFormat, StringComparison.OrdinalIgnoreCase))
else if (!requiredFormats.Any(requiredFormat => string.Equals(rootDriveInfo.DriveFormat, requiredFormat, StringComparison.OrdinalIgnoreCase)))
{
error = $"Error: Currently only {requiredFormat} volumes are supported. Ensure repo is located into an {requiredFormat} volume.";
error = $"Only {string.Join(" and ", requiredFormats)} volumes are supported. Ensure your repo is located in an {string.Join(" or ", requiredFormats)} volume.";
return false;
}

Expand Down

0 comments on commit 67a4139

Please sign in to comment.