我想使用C#来检查文件是否存在于指定的url,而不会触发并捕获404错误,如下面的代码所示。
bool urlExists = true;
try {
using (var webClient = new WebClient()) {
byte[] data = webClient.DownloadData(myUrl);
}
}
catch (WebException) {
urlExists = false;
}