gpt4 book ai didi

c# - 如何在 C#/ASP.NET 中检查图像是否存在于 http ://someurl/myimage. jpg

转载 作者:可可西里 更新时间:2023-11-01 15:30:26 27 4
gpt4 key购买 nike

如何检查图像是否存在于 http://someurl/myimage.jpg在 C#/ASP.NET 中似乎应该有一种方法来检查这一点——但我找不到。

我找到了 this , 但它并没有真正回答问题。

最佳答案

这段代码应该可以工作:

private static bool UrlExists(string url)
{
try
{
new System.Net.WebClient().DownloadData(url);
return true;
}
catch (System.Net.WebException e)
{
if (((System.Net.HttpWebResponse)e.Response).StatusCode == System.Net.HttpStatusCode.NotFound)
return false;
else
throw;
}
}

关于c# - 如何在 C#/ASP.NET 中检查图像是否存在于 http ://someurl/myimage. jpg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1639878/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com