GitCommands.GitCommands.PathIsUrl C# (CSharp) Method

PathIsUrl() public static method

public static PathIsUrl ( string path ) : bool
path string
return bool
        public static bool PathIsUrl(string path)
        {
            return path.Contains(Settings.PathSeperator.ToString()) || path.Contains(Settings.PathSeperatorWrong.ToString());
        }
GitCommands