mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-31 01:55:41 +01:00
13 lines
269 B
C#
13 lines
269 B
C#
using System.IO;
|
|
|
|
namespace NzbDrone.Common.Extensions
|
|
{
|
|
public static class PathExtensions
|
|
{
|
|
public static bool ContainsInvalidPathChars(this string text)
|
|
{
|
|
return text.IndexOfAny(Path.GetInvalidPathChars()) >= 0;
|
|
}
|
|
}
|
|
}
|