Учитывая абсолютный URI / URL, я хочу получить URI / URL, который не содержит листовую часть. Например: учитывая http://foo.com/bar/baz.html, я должен получить http://foo.com/bar/.
Код, который я мог бы придумать, кажется немного длинным, поэтому мне интересно, есть ли лучший способ.
static string GetParentUriString(Uri uri)
{
StringBuilder parentName = new StringBuilder();
// Append the scheme: http, ftp etc.
parentName.Append(uri.Scheme);
// Appned the '://' after the http, ftp etc.
parentName.Append("://");
// Append the host name www.foo.com
parentName.Append(uri.Host);
// Append each segment except the last one. The last one is the
// leaf and we will ignore it.
for (int i = 0; i < uri.Segments.Length - 1; i++)
{
parentName.Append(uri.Segments[i]);
}
return parentName.ToString();
}
Можно использовать функцию примерно так:
static void Main(string[] args)
{
Uri uri = new Uri("http://foo.com/bar/baz.html");
// Should return http://foo.com/bar/
string parentName = GetParentUriString(uri);
}
Спасибо,
Рохит