我正在尝试使用Net.WebClient调用DownloadFile下载文件
Using client As New Net.WebClient()
Try
client.DownloadFile(PDFURL, FullPDFFilePath)
然后我捕获异常并检查消息是否有403,404或500错误(我们调用的系统最常见的类型。
Catch ex as exception
If exceptionMessage.Contains("(403)") Then 'Forbidden
LogInformation("403 returned on download for " + CRPOrderNum, "DownloadLabels")
ElseIf exceptionMessage.Contains("(404)") Then 'Not Found
LogInformation("404 returned on download for " + CRPOrderNum, "DownloadLabels")
else
'blah blah
end if
finally
end try
我是否有礼貌的方式可以请求文件,而不是调用DownloadFile,并处理异常?
提前致谢。