You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
using System.IO;
|
|
using Newtonsoft.Json.Serialization;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Test.Common
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static string AsOsAgnostic(this string path)
|
|
{
|
|
if (OsInfo.IsLinux)
|
|
{
|
|
if (path.Length > 2 && path[1] == ':')
|
|
{
|
|
path = path.Replace(":", "");
|
|
path = Path.DirectorySeparatorChar + path;
|
|
}
|
|
path = path.Replace("\\", Path.DirectorySeparatorChar.ToString());
|
|
}
|
|
|
|
return path;
|
|
}
|
|
}
|
|
} |