The following code will throw an exception when i try to connect to a "write-only" ftp
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(ftp://...);
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.UploadFile;
Stream ftpstream = request.GetRequestStream();
GetRequestStream() throws a "permission denied" exception since the framework implements the FTP commands as follows: - open - user - pwd
please any help ?