Bracket.Hosting.VirtualFileUtils.IsTopLevel C# (CSharp) Method

IsTopLevel() public static method

public static IsTopLevel ( string path ) : bool
path string
return bool
        public static bool IsTopLevel(string path)
        {
            if (String.IsNullOrEmpty(path))
                return false;
            return PathSeparatorRegex.IsMatch(path) == false;
        }