我想为我的应用加载图片。 我知道获取图像所需的确切URL。如何检查URL是否存在?
答案 0 :(得分:0)
你使用这样的东西。
bool result = false;
using (WebClient client = new WebClient())
{
try
{
Stream stream = client.OpenRead(url);
if (stream != null)
{
result = true;
}
else
{
result = false;
}
}
catch
{
//Any exception will returns false.
result = false;
}
}
return result;
当您使用WP7时,您可能需要查看异步版本。
来源:http://www.dotnetthoughts.net/how-to-check-remote-file-exists-using-c/