diff --git a/src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.FormatInfo.cs b/src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.FormatInfo.cs index 4c2a9c6678bf0f..204bb48d4bc36f 100644 --- a/src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.FormatInfo.cs +++ b/src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.FormatInfo.cs @@ -25,7 +25,7 @@ internal struct MountPointInformation internal static unsafe Error GetFileSystemTypeNameForMountPoint(string name, out string format) { - if (OperatingSystem.IsLinux()) + if (OperatingSystem.IsLinux() || OperatingSystem.IsAndroid()) { // Canonicalize and resolve symbolic links. string? path = Sys.RealPath(name);