Top "Ftpwebrequest" questions

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

how to download compressed file (.zip) through FTP using c#?

How to download .zip file format using c# code? Here is the code, i am using to download. Just to …

c# ftp sftp ftpwebrequest
Retrieving list of FTP file names only, without additional details

I'm trying to download the contents of an FTP folder to a local folder using a this example on StackOverflow: …

c# .net ftp ftpwebrequest
Check if directory exists on FTP server

I'm running a check to see if a directory exists on my FTP server: public bool DirectoryExists(string directory) { bool …

c# ftp ftpwebrequest
Is it possible to do "Active" mode FTP using FtpWebRequest?

Due to some firewall issues, we need to do FTP using "active" mode (i.e. not by initiating a PASV …

c# ftp ftpwebrequest
Renaming file with FtpWebRequest

When moving a file to another FTP location you must use RenameTo with the new FTP location. In this example …

c# .net ftp ftpwebrequest
How to check FtpWebRequest for errors

If I use System.Net.FtpWebRequest to upload a file to a vsftpd server, do I need to use GetResponse …

c# powershell ftp ftpwebrequest
C# BinaryReader "stream does not support seek operations"

I am trying to download files from an ftp server using C# and ftpwebrequest. I can get the bytes using …

c# ftpwebrequest binaryreader
FtpWebResponse, the operation timed out

I want to download files based on their date time from a ftp server..I can access this Ftp from …

c# ftpwebrequest request-timed-out ftpwebresponse
How to send arbitrary FTP commands in C#

I have implemented the ability to upload, download, delete, etc. using the FtpWebRequest class in C#. That is fairly straight …

c# ftp ftpwebrequest
FtpWebRequest "The remote certificate is invalid according to the validation procedure"

I have a .NET client application that tries to ftp over a file to an ftp site which has a …

.net ssl certificate ftpwebrequest