Top "Ftpwebrequest" questions

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

FtpWebRequest Download File

The following code is intended to retrieve a file via FTP. However, I'm getting an error with it. serverPath = "ftp://…

c# .net ftp ftpwebrequest ftpwebresponse
How to check if file exists on FTP before FtpWebRequest

I need to use FtpWebRequest to put a file in a FTP directory. Before the upload, I would first like …

c# .net ftp ftpwebrequest
How to check if an FTP directory exists

Looking for the best way to check for a given directory via FTP. Currently i have the following code: private …

c# .net ftp ftpwebrequest
FtpWebRequest returns error 550 File unavailable

I have created a small windows forms application to upload the file to one of our client's ftp site. But …

c# .net file-upload ftp ftpwebrequest
Upload file on FTP

I want to upload file from one server to another FTP server and following is my code to upload file …

c# asp.net .net ftp ftpwebrequest
Transfer files over FTPS (SSL/TLS) using C#.Net

I'm writing an application that syncs files over an FTP site. Right now it's working by connecting through regular FTP, …

c# ssl ftpwebrequest ftps
Upload file to FTP site using VB.NET

I have this working code from this link, to upload a file to an ftp site: ' set up request... …

.net vb.net ftp ftpwebrequest
Downloading files Using FtpWebRequest

I'm trying to download a file using FtpWebRequest. private void DownloadFile(string userName, string password, string ftpSourceFilePath, string localDestinationFilePath) { int …

c# .net c#-4.0 ftp ftpwebrequest
How can I use FTP to move files between directories?

I have a program that needs to move a file from one directory to another on an FTP server. For …

c# .net-3.5 ftp ftpwebrequest
Does .NET FtpWebRequest Support both Implicit (FTPS) and explicit (FTPES)?

I am being asked to support implicit and explicit FTPS (also known as FTPES). We are currently using the .NET …

c# .net ftp ftpwebrequest ftps