文件我的代碼:試圖FTP以特殊字符
FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(url);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.UseBinary = true; // Binary mode when downloading
request.Credentials = new NetworkCredential(user, password);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
我總是得到錯誤:「請求的URI是這個FTP命令無效」。
問題是url包含一個「#」。既然我不能阻止人們創建這種類型的文件,是否有辦法逃避特殊字符並仍然處理文件?
你能提供一個樣本網址嗎? – marto 2011-06-14 21:19:30
你能舉一個例子url嗎? – 2011-06-14 21:19:49