如果地址以此类结尾,我怎样才能获得文件名。
/download/file/36fdd4aebda3819d329640ce75755657bc0c0d4c6811432b3bb6aac321dc78d/ ?
这是简化的代码示例
void geckoWebBrowser1_Navigating(object sender, GeckoNavigatingEventArgs e)
{
if (e.Uri.AbsolutePath.Contains("/file/"))
{
MyUrl = e.Uri.ToString();
// and here I tried different codes construstors, methods but I can not get the filename
}
if (e.Uri.Segments[e.Uri.Segments.Length - 1].EndsWith(".exe"))
{
// if the address ended with the FileName this code works well
Uri u = new Uri(e.Uri.ToString());
string filename = Path.GetFileName(ut.LocalPath);
MessageBox.Show(fileName);
}
}
答案 0 :(得分:3)
它没有“文件名”,除非有Content-Disposition标题,包括文件名-parm。它可能类似于:
Content-Disposition: attachment; filename=FileA.abc
在这种情况下,文件名为FileA.abc
。
然而,我并没有真正使用WebClient类,我没有看到任何简单的方法来访问标题。您必须切换到使用HttpWebRequest,并自己做更多工作。
答案 1 :(得分:0)
内容 - 处置应为
Content-Disposition: attachment; filename=\"abc.msi\""
在这里你想得到abc.msi。为此,您可以使用以下代码。
string contentDisposition = resp.Headers["Content-Disposition"];
string fileName = string.Empty;
if (!string.IsNullOrEmpty(contentDisposition))
{
string lookFor = "filename=";
int index = contentDisposition.IndexOf(lookFor, StringComparison.CurrentCultureIgnoreCase);
if (index >= 0)
fileName = contentDisposition.Substring(index + lookFor.Length).Replace("\"", ""); ;
}