Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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