mirror of https://github.com/Radarr/Radarr
31 lines
723 B
C#
31 lines
723 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class PathEqualityComparer : IEqualityComparer<string>
|
|
{
|
|
public static readonly PathEqualityComparer Instance = new PathEqualityComparer();
|
|
|
|
private PathEqualityComparer()
|
|
{
|
|
}
|
|
|
|
public bool Equals(string x, string y)
|
|
{
|
|
return x.PathEquals(y);
|
|
}
|
|
|
|
public int GetHashCode(string obj)
|
|
{
|
|
if (OsInfo.IsWindows)
|
|
{
|
|
return obj.CleanFilePath().ToLower().GetHashCode();
|
|
}
|
|
|
|
return obj.CleanFilePath().GetHashCode();
|
|
}
|
|
}
|
|
}
|