我想为我的应用加载图像。我知道获取图像所需的确切 URL。如何检查 URL 是否存在?
问问题
558 次
1 回答
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/
于 2013-08-22T04:41:38.310 回答