C# 다운로드 오류: An exception occurred during a WebClient request.,어떻게 처리해야 할지 모르겠다.

3965 단어
            // 3 
            string exep = "";
            do
            {
                try
                {
                    if (!Directory.Exists(Dir))
                    {
                        Directory.CreateDirectory(Dir);
                    }
                    using (var wc = new WebClient())
                    {
                        wc.Credentials = CredentialCache.DefaultCredentials;
                        wc.Headers.Add(HttpRequestHeader.UserAgent, "anything");
                        wc.DownloadFile(strFullName, Dir + strFullName.Substring(strFullName.LastIndexOf('/') + 1));
                    }
                    return true;
                }
                catch (System.Net.WebException ex)
                {
                    // 
                    if (ex.Message == "An exception occurred during a WebClient request.")
                    {
                        exep = "occurred";
                    }
                    else {
                        exep = "";
                    }
                }
                catch (Exception ex)
                {
                    LogMsg.WriteLogToApplicationFolderByMonth(ex.ToString() + "-------------------------------------FileURL:" + strFullName);
                    return false;
                }
            } while (exep == "occurred");
            return true;

그림은 서버에 존재하여 정상적으로 접근할 수 있지만, 다운로드할 때 때때로 "An exception occurred during a WebClient request"라고 보고합니다.
어떻게 처리해야 할지 몰라서 최대 세 번 내리치는 순환을 했다.(현재는 다운로드 문제를 해결할 수 있다. 이 문제는 가끔 어떤 다운로드 요청에서 발생하기 때문에 3회 다운로드 요청이 끝날 때까지 순환 요청을 썼다)
 
다음으로 전송:https://www.cnblogs.com/hougelou/p/4223254.html

좋은 웹페이지 즐겨찾기