2016-11-10 13:04:39 +00:00
|
|
|
namespace System.IO
|
|
|
|
{
|
2019-04-12 14:10:50 +00:00
|
|
|
internal static partial class PathInternal
|
2016-11-10 13:04:39 +00:00
|
|
|
{
|
|
|
|
public static bool IsPartiallyQualified (string path)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-10 11:41:01 +00:00
|
|
|
|
|
|
|
public static bool HasIllegalCharacters (string path, bool checkAdditional)
|
|
|
|
{
|
|
|
|
return path.IndexOfAny (Path.InvalidPathChars) != -1;
|
|
|
|
}
|
2016-11-10 13:04:39 +00:00
|
|
|
}
|
|
|
|
}
|