Pchp.Library.PhpPath.IsLocalFile C# (CSharp) Метод

IsLocalFile() статический приватный Метод

Check if the given path is a path to a local file.
Invalid path.
static private IsLocalFile ( string url ) : bool
url string The path to test.
Результат bool
        internal static bool IsLocalFile(string/*!*/ url)
        {
            return GetScheme(url) == "file";
        }