Top "Ftpwebrequest" questions

A .NET Framework class, implementing an File Transfer Protocol (FTP) client.

FTP upload file The requested FTP command is not supported when using HTTP proxy

Can someone please take a look at the code below and tell me what I am doing wrong. I am …

c# ftp ftpwebrequest
How to get the last-modified date of files on FTP server

This is my code FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(FTPAddress); ftpRequest.Method = WebRequestMethods.Ftp.ListDirectoryDetails; FtpWebResponse response = (FtpWebResponse)ftpRequest.GetResponse(); …

c# .net ftp ftpwebrequest
Howto do a simple ftp get file on Android

I can't find an example of a simple FTP access of a file anywhere, and the FTPClient class (which a …

android ftpwebrequest
Upload and download a file to/from FTP server in C#/.NET

I am using .NET 4 C#. I am trying to upload and then download a ZIP file to (my) server. For …

c# .net ftp webclient ftpwebrequest
How to recursively delete a folder with the files within using FtpWebRequest?

I want to delete a folder in FTP and it's files recursively. Any example code do I can implement?

c# ftp ftpwebrequest
Setting port in FtpWebRequest

I need the user to be able to be able to modify the port for downloading FTP information - but …

c# ftpwebrequest
Upload a file to an FTP server from a string or stream

I'm trying to create a file on an FTP server, but all I have is either a string or a …

c# .net ftp webrequest ftpwebrequest
How to properly disconnect from FTP server with FtpWebRequest

I've created a ftp client that connects several times during the day to retrieve log files from a FTP server. …

c# ftp ftp-client ftpwebrequest
The server returned an address in response to the PASV command that is different than the address to which the FTP connection was made

System.Net.WebException: The server returned an address in response to the PASV command that is different than the address …

c# .net ftp ftpwebrequest system.net.webexception
How can I upload an image using FtpWebRequest?

I have been working at building a feature for a client that will enable them to upload images from www.…

c# asp.net-mvc-3 ftpwebrequest