Pchp.Library.PhpPath.IsLocalFile C# (CSharp) Method

IsLocalFile() static private method

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.
return bool
        internal static bool IsLocalFile(string/*!*/ url)
        {
            return GetScheme(url) == "file";
        }