Webclient导致无效的操作异常

时间:2015-07-24 10:18:04

标签: c# webclient

我尝试下载一个简单的xml文件并将其保存到用户本地配置文件中。在尝试下载时(我不认为这与保存位置有关,但我并非100%确定)我在webclient上遇到以下异常。

System.InvalidOperationException

我的代码如下;

public void downloadProxy()  {
            string url = Properties.Settings.Default.url;
            string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "/netsettings/proxies.xml");

        try
        {               
            WebClient GrabFile = new WebClient(); 
            GrabFile.DownloadFile(url, path);   
        }
        catch (WebException webEx)
        {
            if (webEx.Status == WebExceptionStatus.ConnectFailure)
            {
                Console.WriteLine("Are you behind a firewall?  If so, go through the proxy server.");
            }
        }

    }

1 个答案:

答案 0 :(得分:0)

如果您使用的是Windows操作系统,请使用反斜杠(而不是斜杠)作为文件夹分隔符:

\netsettings\proxies.xml