Bari.Plugins.Nuget.Tools.NuGet.GetRelativePath C# (CSharp) Method

GetRelativePath() private method

private GetRelativePath ( string path, LocalFileSystemDirectory root ) : string
path string
root LocalFileSystemDirectory
return string
        private string GetRelativePath(string path, LocalFileSystemDirectory root)
        {
            return path.Substring(root.AbsolutePath.Length).TrimStart(Path.DirectorySeparatorChar);
        }