mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Parse UNC paths
This commit is contained in:
parent
153e013afb
commit
d5a869ac54
2 changed files with 11 additions and 1 deletions
|
@ -130,11 +130,20 @@ namespace NzbDrone.Core
|
|||
return NormalizeRegex.Replace(title, String.Empty).ToLower();
|
||||
}
|
||||
|
||||
//Note: changing case on path is a problem for running on mono/*nix
|
||||
public static string NormalizePath(string path)
|
||||
{
|
||||
if (String.IsNullOrEmpty(path))
|
||||
throw new ArgumentException("Path can not be null or empty");
|
||||
return new FileInfo(path).FullName.ToLower().Trim('/', '\\', ' ');
|
||||
|
||||
var info = new FileInfo(path);
|
||||
|
||||
if( info.FullName.StartsWith(@"\\")) //UNC
|
||||
{
|
||||
return info.FullName.ToLower().TrimEnd('/', '\\', ' ');
|
||||
}
|
||||
|
||||
return info.FullName.ToLower().Trim('/', '\\', ' ');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue