I have a requirement like need to create a C# app which will upload an excel file to "FTP/SFTP" server based on settings entered on the app.config
file (using "ftp\ftps\sftp").
I am fresh to these protocols, having so many doubts.
- What is the difference between FTP and SFTP server?
- Is it possible to access FTP server using SFTP connection methods and vice versa (guided to use Rebex library to connect to SFTP)?
- How can change following FTP upload method to FTPS
Code is below:
string PureFileName = new FileInfo(fileName).Name;
string uploadUrl = String.Format("ftp://{0}/{1}", ftpurl, PureFileName);
FtpWebRequest req = (FtpWebRequest)FtpWebRequest.Create(uploadUrl);
req.Proxy = null;
req.Method = WebRequestMethods.Ftp.UploadFile;
req.Credentials = new NetworkCredential(user, pass);
req.UseBinary = true;
req.UsePassive = true;
byte[] data = File.ReadAllBytes(fileName);
req.ContentLength = data.Length;
Stream stream = req.GetRequestStream();
stream.Write(data, 0, data.Length);
stream.Close();
FtpWebResponse res = (FtpWebResponse)req.GetResponse();
Is it like changing url
from FTP to FTPS?
string uploadUrl = String.Format("ftps://{0}/{1}", ftpurl, PureFileName);
For FTPS Explicit
If you need help with downloading, uploading of getting file list do contact me
Can be find quite easily by hovering over the tags under your question. FTP and SFTP are totally different protocols. FTPS is FTP with encryption
No
If you are using
WebRequestMethods.Ftp.UploadFile;
it will not work for SFTP, maybe for FTPS, but there must be some option to turn the encryption on.If your code is able to handle FTPS it is usually able to handle FTP too, but there is lots of code which can only handle FTP and not FTPS. Since SFTP is a completely different protocol code handling FTP/FTPS will usually not be able to do SFTP. And SFTP handling code will not do FTP/FTPS. There are exceptions, i.e. FileZilla can handle all these protocols in a single application.
As for using FTPS with FtpWebRequests see msdn. Using SFTP with FtpWebRequests is not possible but there are other libraries.
The SFTP and the FTP/FTPS are two completely different protocols. You cannot use the FTP to upload to an SFTP server and vice versa. The FTPS is FTP over TLS/SSL session. Most FTP clients/libraries do support the FTPS as well.
Only the FTP(S) is supported natively by the .NET framework (via the
FtpWebRequest
class). To use the FTPS, use theftps://
URL or set theFtpWebRequest.EnableSsl
totrue
.There's no native support for the SFTP in the .NET framework. You have to use a 3rd party library for the SFTP.
There are libraries that offer an uniform interface to all these protocols.
For example with the WinSCP .NET assembly, it is (almost) only about setting the
SessionOptions.Protocol
to theProtocol.FTP
or theProtocol.SFTP
.SFTP protocol:
FTP protocol:
FTPS protocol:
If you need to make the session configurable, you can make it easy for you by using the
SessionOptions.ParseUrl
that allows you to configure major session options using a single connection string (URL) that you set in your configuration file.The connection string can be like:
sftp://user@mypassword;fingerprint=ssh-rsa-xxxxxxxxxxx...=@example.com
ftp://user@mypassword@example.com
ftpes://user@mypassword@example.com
You can have WinSCP (GUI) generate the URL (connection string) for you.
Note that the WinSCP .NET assembly is not a native .NET library. It's just a thin .NET wrapper around a console application (WinSCP).
There might be native .NET libraries that support all the protocols with an uniform interface. But I'm not aware of any free one.
(I'm the author of WinSCP)