<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Alex FTPS Client</title><link>http://ftps.codeplex.com/project/feeds/rss</link><description>This project provides a free complete FTP and FTPS &amp;#40;FTP over SSL&amp;#41; standard Framework 2.0 &amp;#47; Mono 2.0 client, a free class library providing easy and complete FTP and FTPS features to any app and Powershell integration      Implemented RFCs&amp;#58;    959, 2228, 2389, 2428, 2640 and 3659.   </description><item><title>Closed Issue: Unable to parse the directory list: String was not recognized as a valid DateTime. [6224]</title><link>http://ftps.codeplex.com/workitem/6224</link><description>I&amp;#39;ve been testing the AlexFTPS component to do some automated FTP directory synchronization and I wanted something that would support FTPS as well as plain FTP.  My initial tests were against a Filezilla server over FTPS and everything works beautifully.  However, my other test server is a Microsoft FTP server &amp;#40;version unknown&amp;#41; using standard FTP.&lt;br /&gt;&amp;#160;&lt;br /&gt;When I issue a GetDirectoryList&amp;#40;&amp;#41; against the appropriate directory, I&amp;#39;m getting an AlexPilotti.FTPS.Common.FTPException with the message &amp;#34;Unable to parse the directory list.&amp;#34; with an inner exception of System.FormatException with a message &amp;#34;String was not recognized as a valid DateTime.&lt;br /&gt;&amp;#160;&lt;br /&gt;I executed a GetDirectoryListUnparsed&amp;#40;&amp;#41; against both servers and compared the date&amp;#47;time strings.  The difference is subtle but the Filezilla server returns a date as Feb 08 05&amp;#58;19 and the Microsoft server is returning Feb  8  5&amp;#58;19.  Using Reflector and stepping through code, I see the issue is the extra space between the 8 and the 5.  A zero is added in front of the 8 in place of the space but the space in front of the 5 remains and when DateTime.ParseExact is executed with a format of &amp;#34;MMM dd HH&amp;#58;mm&amp;#34;, the exception is thrown.&lt;br /&gt;&amp;#160;&lt;br /&gt;I just wanted to document this minor issue.  I&amp;#39;ve attached a text file containing the unparsed directory list with an example of the offending date.&lt;br /&gt;&amp;#160;&lt;br /&gt;For now, I can use GetDirectoryListUnparsed&amp;#40;&amp;#41; and write a parsing routine specifically for this server.&lt;br /&gt;</description><author>alexp</author><pubDate>Thu, 16 May 2013 11:06:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: Unable to parse the directory list: String was not recognized as a valid DateTime. [6224] 20130516110628A</guid></item><item><title>Commented Issue: FEAT 211 No extension supported [8218]</title><link>http://ftps.codeplex.com/workitem/8218</link><description>I have a server that responds to the FEAT command with &amp;#34;211 No extension supported&amp;#34;, causing&lt;br /&gt;&amp;#160;&lt;br /&gt;System.ArgumentOutOfRangeException&amp;#58; Index was out of range. Must be non-negative and less than the size of the collection.&lt;br /&gt;Parameter name&amp;#58; index&lt;br /&gt;   at System.Collections.Generic.List&amp;#96;1.RemoveAt&amp;#40;Int32 index&amp;#41;&lt;br /&gt;   at AlexPilotti.FTPS.Client.FTPSClient.GetFeaturesFromServer&amp;#40;&amp;#41;&lt;br /&gt;   at AlexPilotti.FTPS.Client.FTPSClient.Connect&amp;#40;String hostname, Int32 port, NetworkCredential credential, ESSLSupportMode sslSupportMode, RemoteCertificateValidationCallback userValidateServerCertificate, X509Certificate x509ClientCert, Int32 sslMinKeyExchangeAlgStrength, Int32 sslMinCipherAlgStrength, Int32 sslMinHashAlgStrength, Nullable&amp;#96;1 timeout, Boolean useCtrlEndPointAddressForData, EDataConnectionMode dataConnectionMode&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: jwikman ** &lt;p&gt;I've got the same issue with a ftp server.&lt;/p&gt;&lt;p&gt;There is a simple fix for this in FeatCmd()&lt;/p&gt;&lt;p&gt;Change &lt;br&gt;```&lt;br&gt;features.RemoveAt(0);&lt;br&gt;features.RemoveAt(features.Count - 1);&lt;br&gt;```&lt;br&gt;To:&lt;br&gt;```&lt;br&gt;if (features.Count &amp;gt; 0)&lt;br&gt;  features.RemoveAt(0);&lt;br&gt;if (features.Count &amp;gt; 0)&lt;br&gt;  features.RemoveAt(features.Count - 1);&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&lt;/p&gt;</description><author>jwikman</author><pubDate>Tue, 14 May 2013 21:12:53 GMT</pubDate><guid isPermaLink="false">Commented Issue: FEAT 211 No extension supported [8218] 20130514091253P</guid></item><item><title>Created Issue: CheckFeature to test command availability [8729]</title><link>http://ftps.codeplex.com/workitem/8729</link><description>Hello,&lt;br /&gt;&lt;br /&gt;Due to the different ftp server implementing different command sets, I think it could be interesting to have CheckFeature&amp;#40;&amp;#41; publically available. &lt;br /&gt;&lt;br /&gt;in FTPSClient.cs &lt;br /&gt;&amp;#43;public bool CheckFeature&amp;#40;string feature&amp;#41;&lt;br /&gt;- private bool CheckFeature&amp;#40;string feature&amp;#41;&lt;br /&gt;</description><author>Jissai</author><pubDate>Fri, 10 May 2013 09:27:45 GMT</pubDate><guid isPermaLink="false">Created Issue: CheckFeature to test command availability [8729] 20130510092745A</guid></item><item><title>Commented Issue: Mocking capabilities [8722]</title><link>http://ftps.codeplex.com/workitem/8722</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I am coding a project using Alex FTPS Client as a library to provide FTP capabilities.&lt;br /&gt;&lt;br /&gt;I use MoQ to unit test my code, but i can&amp;#39;t mock FTPSClient. The problem is most of mocking libraries need the mocked code to be an interface, an abstract or non-sealed class.&lt;br /&gt;&lt;br /&gt;Would it be possible to make Alex FTPS Client mockable &amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Comments: ** Comment from web user: Jissai ** &lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I tried the workaround and removed &amp;quot;sealed&amp;quot;. &lt;br&gt;I go one step further but apparently when mocking a class, MoQ needs the methods to be virtual.&lt;br&gt;I confirmed this by making &amp;quot;Connect&amp;quot; methods virtual.&lt;br&gt;The better approach would be to have interface though.&lt;/p&gt;&lt;p&gt;Thank you.&lt;/p&gt;</description><author>Jissai</author><pubDate>Fri, 10 May 2013 07:59:55 GMT</pubDate><guid isPermaLink="false">Commented Issue: Mocking capabilities [8722] 20130510075955A</guid></item><item><title>Commented Issue: Mocking capabilities [8722]</title><link>http://ftps.codeplex.com/workitem/8722</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I am coding a project using Alex FTPS Client as a library to provide FTP capabilities.&lt;br /&gt;&lt;br /&gt;I use MoQ to unit test my code, but i can&amp;#39;t mock FTPSClient. The problem is most of mocking libraries need the mocked code to be an interface, an abstract or non-sealed class.&lt;br /&gt;&lt;br /&gt;Would it be possible to make Alex FTPS Client mockable &amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Comments: ** Comment from web user: alexp ** &lt;p&gt;Sure.&lt;/p&gt;&lt;p&gt;As a workaround for the moment you can just remove &amp;quot;sealed&amp;quot; from:&lt;/p&gt;&lt;p&gt;public sealed class FTPSClient : IDisposable&lt;/p&gt;&lt;p&gt;and recompile the solution. &lt;/p&gt;</description><author>alexp</author><pubDate>Thu, 09 May 2013 15:56:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: Mocking capabilities [8722] 20130509035649P</guid></item><item><title>Created Issue: Mocking capabilities [8722]</title><link>http://ftps.codeplex.com/workitem/8722</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I am coding a project using Alex FTPS Client as a library to provide FTP capabilities.&lt;br /&gt;&lt;br /&gt;I use MoQ to unit test my code, but i can&amp;#39;t mock FTPSClient. The problem is most of mocking libraries need the mocked code to be an interface, an abstract or non-sealed class.&lt;br /&gt;&lt;br /&gt;Would it be possible to make Alex FTPS Client mockable &amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>Jissai</author><pubDate>Tue, 07 May 2013 12:44:01 GMT</pubDate><guid isPermaLink="false">Created Issue: Mocking capabilities [8722] 20130507124401P</guid></item><item><title>New Post: How to know the size of files?</title><link>http://ftps.codeplex.com/discussions/284303</link><description>&lt;div style="line-height: normal;"&gt;A new DLL would be very helpful.  I just started writing an app and got around to using DirectoryListItem and found out that 1.1.0 doesn't include the Size property so I'm kinda stalled right now.&lt;br /&gt;
&lt;/div&gt;</description><author>PJOttawa</author><pubDate>Thu, 18 Apr 2013 18:24:49 GMT</pubDate><guid isPermaLink="false">New Post: How to know the size of files? 20130418062449P</guid></item><item><title>New Post: connect to sftp with proxy</title><link>http://ftps.codeplex.com/discussions/440611</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Sftp is a completely different protocol, not supported by our ftps client.&lt;br /&gt;
&lt;/div&gt;</description><author>alexp</author><pubDate>Wed, 17 Apr 2013 16:05:29 GMT</pubDate><guid isPermaLink="false">New Post: connect to sftp with proxy 20130417040529P</guid></item><item><title>New Post: connect to sftp with proxy</title><link>http://ftps.codeplex.com/discussions/440611</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
i am using Alex ftp client and want to connect with sftp (SSH) file transfer using the Proxy.&lt;br /&gt;
&lt;br /&gt;
Is this utility support this feature? Please let me know.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Sunil&lt;br /&gt;
&lt;/div&gt;</description><author>soninsunil</author><pubDate>Wed, 17 Apr 2013 14:01:15 GMT</pubDate><guid isPermaLink="false">New Post: connect to sftp with proxy 20130417020115P</guid></item><item><title>New Post: No luck in connecting to Implicit FTP, ask for help</title><link>http://ftps.codeplex.com/discussions/216978</link><description>&lt;div style="line-height: normal;"&gt;All the other SFTP libraries that I have seen are way overpriced.  This is a good one:&lt;br /&gt;
&lt;a href="https://www.kellermansoftware.com/p-41-net-sftp-library.aspx" rel="nofollow"&gt;https://www.kellermansoftware.com/p-41-net-sftp-library.aspx&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>asavasamuel</author><pubDate>Mon, 08 Apr 2013 06:12:23 GMT</pubDate><guid isPermaLink="false">New Post: No luck in connecting to Implicit FTP, ask for help 20130408061223A</guid></item><item><title>New Post: No luck in connecting to Implicit FTP, ask for help</title><link>http://ftps.codeplex.com/discussions/216978</link><description>&lt;div style="line-height: normal;"&gt;Giggs&lt;br /&gt;
&lt;br /&gt;
All the other SFTP libraries that I have seen are way overpriced.  This is a good one:&lt;br /&gt;
&lt;a href="https://www.kellermansoftware.com/p-41-net-sftp-library.aspx" rel="nofollow"&gt;https://www.kellermansoftware.com/p-41-net-sftp-library.aspx&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>asavasamuel</author><pubDate>Mon, 08 Apr 2013 06:11:53 GMT</pubDate><guid isPermaLink="false">New Post: No luck in connecting to Implicit FTP, ask for help 20130408061153A</guid></item><item><title>New Post: Control the bandwidth</title><link>http://ftps.codeplex.com/discussions/438523</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
Is there a way to control / limit the bandwidth speed?&lt;br /&gt;
&lt;br /&gt;
THX!&lt;br /&gt;
&lt;/div&gt;</description><author>pipothebit</author><pubDate>Sat, 30 Mar 2013 15:23:02 GMT</pubDate><guid isPermaLink="false">New Post: Control the bandwidth 20130330032302P</guid></item><item><title>New Post: The remote certificate is invalid according to the validation procedure</title><link>http://ftps.codeplex.com/discussions/437343</link><description>&lt;div style="line-height: normal;"&gt;We have a Test Environment where we test out programs and then deploy it in production.&lt;br /&gt;
One program utilizes your library (Thanks for that !!!) and runs just fine using the following code:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        using (FTPSClient client = new FTPSClient())
        {
            client.Connect(FTPSite, credential, ESSLSupportMode.CredentialsRequired | ESSLSupportMode.DataChannelRequested, new RemoteCertificateValidationCallback(ValidateTestServerCertificate));
            LSOutput = client.GetDirectoryListUnparsed(FTPFolder);
        }&lt;/code&gt;&lt;/pre&gt;

When the same code was deployed in Production, I got this error:&lt;br /&gt;
&amp;quot;The remote certificate is invalid according to the validation procedure&amp;quot;&lt;br /&gt;
&lt;br /&gt;
In Test Region it did not give any certificate error and in Prod it started giving.&lt;br /&gt;
&lt;br /&gt;
So I had to use the logic of accepting all certificates. So It started working fine. But its exceptionally slow. Takes 1 min to connect and another 1 min to retrive Directory listing.&lt;br /&gt;
&lt;br /&gt;
Can you help me debug the issue.&lt;br /&gt;
&lt;/div&gt;</description><author>akshayj</author><pubDate>Wed, 20 Mar 2013 14:53:39 GMT</pubDate><guid isPermaLink="false">New Post: The remote certificate is invalid according to the validation procedure 20130320025339P</guid></item><item><title>New Post: SSL/TLS authentication not allowed</title><link>http://ftps.codeplex.com/discussions/437072</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
   I'm trying to make example work from home page on c#:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;using (FTPSClient client = new FTPSClient())
            {
                client.Connect(&amp;quot;172.16.17.15&amp;quot;,
                               new NetworkCredential(&amp;quot;test&amp;quot;,  &amp;quot;test&amp;quot;),
                               ESSLSupportMode.CredentialsRequired |
                               ESSLSupportMode.DataChannelRequested);

                client.GetFile(&amp;quot;/it/remotefile.jpg&amp;quot;, @&amp;quot;c:\temp\&amp;quot;);&lt;/code&gt;&lt;/pre&gt;

But I'm getting error like &amp;quot;SSL/TLS authentication not allowed&amp;quot;  any one knows hot to solve this issue or change authentication? Then I'm connecting through Total Commander I'm getting log like this maybe it will help:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;QUIT
221 Goodbye
----------
Connect to: (18/03/2013 15:21:39)
hostname=172.16.17.15
username=test
startdir=
172.16.17.15=172.16.17.15
220 FileZilla Server version 0.9.39 beta
USER test
331 Password required for test
PASS ***********
230 Logged on
SYST
215 UNIX emulated by FileZilla
FEAT
211-Features:
 MDTM
 REST STREAM
 SIZE
 MLST type*;size*;modify*;
 MLSD
 UTF8
 CLNT
 MFMT
211 End
CLNT Total Commander (UTF-8)
200 Don't care
OPTS UTF8 ON
200 UTF8 mode enabled
Connect ok!
PWD
257 &amp;quot;/&amp;quot; is current directory.
Get directory
TYPE A
200 Type set to A
PORT 192,168,1,233,17,224
200 Port command successful
MLSD
150 Opening data channel for directory list.
Download
Waiting for server...
226 Transfer OK&lt;/code&gt;&lt;/pre&gt;

I try to find some documentation and samples of this library but failed.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;/div&gt;</description><author>hadesuk</author><pubDate>Mon, 18 Mar 2013 15:46:19 GMT</pubDate><guid isPermaLink="false">New Post: SSL/TLS authentication not allowed 20130318034619P</guid></item><item><title>Updated Wiki: Home</title><link>http://ftps.codeplex.com/wikipage?version=46</link><description>&lt;div class="wikidoc"&gt;
&lt;h1&gt;Project Description&lt;/h1&gt;
&lt;p&gt;&lt;br&gt;
This projects provides a &lt;strong&gt;free FTP/FTPS client and class library&lt;/strong&gt; available on any platform supporting the
&lt;strong&gt;.Net Framework 2.0&lt;/strong&gt; or &lt;strong&gt;Mono 2.0&lt;/strong&gt;. This currently includes: Microsoft Windows 2000 SP4/XP SP2/2003/Vista/2008, Linux, Mac OS X 10.4 and above, and, to some extent, Sun Solaris.
&lt;br&gt;
&lt;br&gt;
Please see &lt;a href="http://www.mono-project.com"&gt;http://www.mono-project.com&lt;/a&gt; for a complete list of platforms supported by Mono 2.0.&lt;br&gt;
&lt;br&gt;
Implemented RFCs:&lt;br&gt;
&lt;br&gt;
959, 2228, 2389, 2428, 2640, 3659, 4217&lt;br&gt;
&lt;br&gt;
FTPS (sometimes called FTPES or &lt;em&gt;explicit&lt;/em&gt; FTPS) is implemented as described in the RFC 4217 and RFC 2228 documents.
&lt;a href="http://www.ietf.org/rfc/rfc4217.txt"&gt;http://www.ietf.org/rfc/rfc4217.txt&lt;/a&gt; Support for the so called
&lt;em&gt;implicit&lt;/em&gt; FTPS has also been added (although not standard).&lt;br&gt;
&lt;br&gt;
FTPS should not be confused with SFTP (FTP over SSH).&lt;br&gt;
&lt;br&gt;
For more information please see &lt;a href="http://en.wikipedia.org/wiki/FTPS"&gt;http://en.wikipedia.org/wiki/FTPS&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Note: not all the FTP commands described in the RFC documents are curently implemented (some of them are obsolete, others were not necessary for the purposes of this project). Please see
&lt;a href="#Implemented"&gt;Implemented FTP commands&lt;/a&gt; below for a detailed list of implemeted commands&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.twitter.com/cloudbaseit"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_me-c.png" alt="Follow alexpilotti on Twitter"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="Cloudbase Solutions" href="http://www.cloudbase.it"&gt;&lt;img title="CBSLogo_thumb.png" src="http://i3.codeplex.com/Download?ProjectName=hypervbackup&amp;DownloadId=351258" alt="CBSLogo_thumb.png" width="150" height="132"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;The FTP/FTPS Client&lt;/h2&gt;
&lt;p&gt;The aim of this FTP/FTPS client is to support the advanced features provided by most modern FTP servers, primarily, but not limited to,
&lt;strong&gt;encryption via SSL/TLS&lt;/strong&gt; and &lt;strong&gt;UTF8&lt;/strong&gt;. A list of the implemented RFC standards and specific commands follows.&lt;br&gt;
&lt;br&gt;
The idea of this client was born while preparing some material for a technical speech session I was going to give at the
&lt;em&gt;Italian Microsoft TechDays - WPC 2008&lt;/em&gt;, about IIS 7.0 new features, including the
&lt;strong&gt;Microsoft FTP for IIS 7.0&lt;/strong&gt; add in and its freshly introduced support for SSL/TLS.&lt;br&gt;
&lt;br&gt;
One of the main problems with standard FTP communications, is that all the username / password communication is performed in clear text, easily eavesdropped by sniffing the network traffic. Altough FTP is one of the oldest Internet protocols still in use today,
 some of its features are still largely needed as they can't be easily replaced by, for example, an HTTP server.&lt;br&gt;
&lt;br&gt;
The SSL/TLS encryption feature, as stated in the RFC 4217 document &lt;a href="http://www.ietf.org/rfc/rfc4217.txt"&gt;
http://www.ietf.org/rfc/rfc4217.txt&lt;/a&gt;, provides a solution for this and other security related limitations. Support for SSL/TLS has been introduced in the most used FTP servers:
&lt;strong&gt;Microsoft FTP for IIS 7.0, vsftpd, wu-ftpd, FileZilla server&lt;/strong&gt;, to name a few. Note: vsftpd FTPS support requires version 2.1.0 or a small
&lt;a href="#patch"&gt;patch for version 2.0.7&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Looking for a free client to be used during my session demos, showing interoperability with other platforms, I realized that there was no single piece of software supporting all the features I needed. Furthermore, I wanted to provide a sample on how to connect
 to a FTP server using SSL using Microsoft .Net and the Powershell, but the standard
&lt;em&gt;System.Net.FTPWebRequest&lt;/em&gt; provided by the framework was not powerful enough (more on this below).
&lt;br&gt;
&lt;br&gt;
That was enough to start this project. The client provides also a wide range of options and commands via command line arguments,
&lt;span style="text-decoration:underline"&gt;making it fully functional when used in scripts, without the shortcomings of the standard FTP clients&lt;/span&gt; available on most platforms.&lt;br&gt;
&lt;br&gt;
Portability among platforms (via the .Net Framework 2.0 and Mono 2.0) and compatibility with all the relevant FTPS servers is also a mandatory goal for this project.
&lt;br&gt;
&lt;br&gt;
Please see below for some &lt;a href="#Quick"&gt;Quick usage samples&lt;/a&gt; and the full
&lt;a href="#Command"&gt;Command line reference&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Microsoft Powershell integration&lt;/h2&gt;
&lt;p&gt;The development of specifc CmdLets is in progress. Please stay tuned.&lt;/p&gt;
&lt;h2&gt;Portable GUI&lt;/h2&gt;
&lt;p&gt;A free portable GUI is also planned and will be developed if there's enough feedback on the project.
&lt;br&gt;
&lt;br&gt;
&lt;a name="Quick"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Quick usage samples&lt;/h2&gt;
&lt;p&gt;Note: execute &lt;em&gt;mono ftps.exe &amp;lt;arguments&amp;gt;&lt;/em&gt; when using Mono.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Show the directory contents of a remote directory using anonymous authentication on standard FTP (without SSL/TLS):
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -ssl ClearText -l /pub
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Connect to the server using SSL/TLS during authentication or clear text mode (standard FTP) if FTPS is not supported:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -l /some/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Connect to the server using SSL/TLS on the control channel, accepting invalid certificates without prompting:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl ControlChannelRequired 
     -sslInvalidServerCertHandling Accept -l /some/path
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Download a remote file using control and data channel SSL/TLS encryption: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl DataChannelRequired 
     -g /remote/path/somefile.txt /local/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Upload a local file with a control channel encrypted during authentication only:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl CredentialsRequired 
     -p /local/path/somefile.txt /remote/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Recursively download a whole directory tree: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -r -g /remote/path/* \local\path\
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Export the server's X.509 certificate on a FTPS connection: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -expCert serverCert.cer
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Implicit FTPS connection on port 21: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -port 21 -ssl Implicit -l
&lt;/pre&gt;
&lt;p&gt;&lt;br&gt;
&lt;a name="Command"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Command line reference&lt;/h2&gt;
&lt;p&gt;The command line reference, available by executing &lt;em&gt;ftps -?&lt;/em&gt; or &lt;em&gt;mono ftps.exe -?&lt;/em&gt; using Mono, follows:&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;pre&gt;Usage: ftps [options] &amp;lt;command&amp;gt; [command specific arguments]
&lt;/pre&gt;
&lt;p&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;Commands:&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-?, -help&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Shows help and usage info&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-d, -delete&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Deletes a remote file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-expCert, -exportSslServerCert&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Exports the server's SSL/TLS X.509 certificate. The export format is managed by the &amp;quot;sslX509ExportFormat&amp;quot; option&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-f, -features&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Prints the list of features supported by the server, as returned by the FTP FEAT command&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-g, -get, -download&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Downloads the given files in the current directory. File names may include wildcards. Operates recursively if the &amp;quot;r&amp;quot; option is specified&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-l, -list&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Returns the contents of the given directory, or the default directory if no name is provided&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-md, -mkdir&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Creates a remote directory&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-p, -put, -upload&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads the given files or directory contents. File names may include wildcards. Operates recursively if the &amp;quot;r&amp;quot; option is specified&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-pa, -putAppend&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads a file appending it's contents if the given remote file already exists&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-pu, -putUnique&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads a file with a unique name&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-rd, -rmdir&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Removes a remote directory&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-rn, -rename&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Renames a remote file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sys, -system&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Returns a brief description of the remote system&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-cust, -custom&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Sends the given FTP command to the server. Note: only the control channel reply is returned&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;Generic options:&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-dm, -dataMode&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Active or Passive (default) data connection mode&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-h, -hostname&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Name or IP address of the remote host to connect to&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-lf, -logFile&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
ftp commands and server replies log file name&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-ltfs, -logFileTimeStamp&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Adds a timestamp to every command and reply in the log file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-noCopyrightInfo&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Avoids displaying the copyright information header&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-oda, -overrideDataAddress&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Use the control connection's remote address instead of the one returned by the PASV command&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-P, -password&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Password to be used in case of non anonymous connections. If omitted it will be requested before connecting. Passing this information as a command line parameter is strongly discouraged for security reasons&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-port&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
TCP/IP connection port, default is: 21 for standard FTP or explicit FTPS, 990 for implicit FTPS&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-r, -recursive&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Enable recursion to download or upload entire directory trees&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-t, -timeout&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
TCP/IP connection timeout in seconds (default 120s)&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-tm, -transferMode&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Transfer mode / representation type. &amp;quot;ASCII&amp;quot; or &amp;quot;Binary&amp;quot; (default)&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-U, -username&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Username used to perform the connection. If omitted an anonymous connection will be performed&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-v, -verbose&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Verbose output&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;SSL/TLS specific options:&lt;/span&gt;&lt;/strong&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-ssl, -tls&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
SSL/TLS support. Possible values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ClearText (Standard FTP, no SSL/TLS support) &lt;/li&gt;&lt;li&gt;CredentialsRequested &lt;/li&gt;&lt;li&gt;CredentialsRequired &lt;/li&gt;&lt;li&gt;ControlChannelRequested &lt;/li&gt;&lt;li&gt;ControlChannelRequired &lt;/li&gt;&lt;li&gt;DataChannelRequested (Default) &lt;/li&gt;&lt;li&gt;DataChannelRequired &lt;/li&gt;&lt;li&gt;ControlAndDataChannelsRequested &lt;/li&gt;&lt;li&gt;ControlAndDataChannelsRequired (most secure) &lt;/li&gt;&lt;li&gt;All (alias for ControlAndDataChannelsRequired) &lt;/li&gt;&lt;li&gt;Implicit &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;-sslClientCertPath&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
X.509 client certificate file path&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslInvalidServerCertHandling&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Invalid X.509 server certificate handling. Valid values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Accept &lt;/li&gt;&lt;li&gt;Prompt (default) &lt;/li&gt;&lt;li&gt;Refuse &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;-sslMinCipherStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. cipher algorithm strength (e.g: 168). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslMinHashStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. hash algorithm strength (e.g: 160). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslMinKeyExStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. key exchange algorithm strength (e.g: 1024). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslX509ExportFormat&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
X509 certificate export format. Not all formats are available on all platforms. Supported values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cert (default) &lt;/li&gt;&lt;li&gt;Pkcs12 &lt;/li&gt;&lt;li&gt;SerializedCert &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a name="FTP/FTPS"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;The FTP/FTPS class library&lt;/h2&gt;
&lt;p&gt;The &lt;em&gt;System.Net.FTPWebRequest&lt;/em&gt; class provided by the .Net Framework, is perfect for simple tasks (e.g. downloading or uploading a file or getting a directory list) and supports also SSL via the
&lt;em&gt;EnableSsl&lt;/em&gt; property See: &lt;a href="http://blogs.msdn.com/adarshk/archive/2005/04/22/410925.aspx"&gt;
http://blogs.msdn.com/adarshk/archive/2005/04/22/410925.aspx&lt;/a&gt; . So why a new class for that?
&lt;br&gt;
&lt;br&gt;
The point is that SSL support in FTP is more that an on/off switch (as in HTTP/HTTPS). FTP requires two separate connections: one for the commands (the
&lt;span style="text-decoration:underline"&gt;control&lt;/span&gt; connection) and one for the data (the
&lt;span style="text-decoration:underline"&gt;data&lt;/span&gt; connection), for downloads, uploads and directory listings.&lt;br&gt;
&lt;em&gt;FTPWebRequest.EnableSsl&lt;/em&gt; simply forces the use of SSL on both of them. &lt;em&gt;
The problem is that this is not always suitable&lt;/em&gt;. &lt;br&gt;
&lt;br&gt;
FTP connections are tipically a pain for firewalls, because the control connection uses a standard TCP port (21), but data connections (in so called
&lt;em&gt;passive&lt;/em&gt; mode), tipically listen on a random port, communicated to the client on the control channel. Well, if the connection is not encrypted, as in standard FTP, firewalls are able to do some packet inspection, get the port number sent to the client
 and allow the connection from that client to the server. To cut a long story short, encrypting the control channel means that firewalls will not be able to do packet inspections and, you guessed it, this is where the problems begin. Please see
&lt;a href="http://en.wikipedia.org/wiki/FTPS"&gt;http://en.wikipedia.org/wiki/FTPS&lt;/a&gt; for more on the subject.&lt;br&gt;
&lt;br&gt;
&lt;span style="text-decoration:underline"&gt;There's a partial solution to this problem:&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
Encrypting the control channel during the credentials exchange (USER/PASS commands) and reverting to clear text after that. This is of course far below the goals of the SSL/TLS support, but it's enough for a very large number of needs and is supported by all
 the main FTPS servers. &lt;br&gt;
&lt;br&gt;
This class library provides a number of SSL/TLS related options to deal with this and other issues.&lt;br&gt;
&lt;br&gt;
Aside that, the class library provides support for a large number of standard FTP commands and some very useful features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tracking of the download status via delegate based callbacks (useful to display the download/upload progress)
&lt;/li&gt;&lt;li&gt;Recursive directory trees downloads and uploads &lt;/li&gt;&lt;li&gt;Support for UTF8 in commands and directory listings (by explicitly setting &lt;em&gt;
OPTS UTF8 ON&lt;/em&gt; if available in the features returned by the &lt;em&gt;FEAT&lt;/em&gt; command)
&lt;/li&gt;&lt;li&gt;IPV6 support (planned) &lt;/li&gt;&lt;li&gt;Multi platform (Microsoft Windows, Linux, Mac OS X, did I already said that?) ;-)
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;The full MSDN style documentation will be released shortly.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
In order to use the FTPS class library, add the &lt;strong&gt;&lt;em&gt;AlexPilotti.FTPS.Client.dll&lt;/em&gt;&lt;/strong&gt; assembly to your project References.&lt;br&gt;
The assembly is available along with the FTPS client on the &lt;span style="text-decoration:underline"&gt;
Releases&lt;/span&gt; page.&lt;br&gt;
&lt;br&gt;
The class library is distributed as free software and can be freely used in your projects, under the terms of the LGPL license.&lt;br&gt;
&lt;br&gt;
Simple class library usage sample in C# (any other CLR compliant language is also supported, e.g.: VB.Net, C&amp;#43;&amp;#43;/CLI, etc.):&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;using&lt;/span&gt; AlexPilotti.FTPS.Client;
&lt;span style="color:blue"&gt;using&lt;/span&gt; AlexPilotti.FTPS.Common;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Net;


&lt;span style="color:blue"&gt;class&lt;/span&gt; Test
{
    &lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;static&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; Main()
    {
        &lt;span style="color:blue"&gt;using&lt;/span&gt; (FTPSClient client = &lt;span style="color:blue"&gt;new&lt;/span&gt; FTPSClient())
        {
            &lt;span style="color:green"&gt;// Connect to the server, with mandatory SSL/TLS &lt;/span&gt;
            &lt;span style="color:green"&gt;// encryption during authentication and &lt;/span&gt;
            &lt;span style="color:green"&gt;// optional encryption on the data channel &lt;/span&gt;
            &lt;span style="color:green"&gt;// (directory lists, file transfers)&lt;/span&gt;
            client.Connect(&lt;span style="color:#a31515"&gt;&amp;quot;ftp.yourserver.com&amp;quot;&lt;/span&gt;, 
                           &lt;span style="color:blue"&gt;new&lt;/span&gt; NetworkCredential(&lt;span style="color:#a31515"&gt;&amp;quot;yourUsername&amp;quot;&lt;/span&gt;, 
                                                 &lt;span style="color:#a31515"&gt;&amp;quot;yourPassword&amp;quot;&lt;/span&gt;), 
                           ESSLSupportMode.CredentialsRequired | 
                           ESSLSupportMode.DataChannelRequested);
			
            &lt;span style="color:green"&gt;// Download a file&lt;/span&gt;
            client.GetFile(&lt;span style="color:#a31515"&gt;&amp;quot;/path/to/remotefile.jpg&amp;quot;&lt;/span&gt;, &amp;quot;c:\\local\\path\\&amp;quot;);
        }
    }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;h2&gt;Snapshots&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;AlexFTPS on Windows:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;em&gt;This screenshots shows the transfer status available during downloads / uploads.&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Vista_640.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=56275" alt="ftps_Vista_640.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;AlexFTPS on Linux:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Linux_640.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=56273" alt="ftps_Linux_640.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;AlexFTPS on Mac OS X:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Mac_OS_X.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=53854" alt="ftps_Mac_OS_X.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;a name="Implemented"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Implemented FTP commands&lt;/h2&gt;
&lt;p&gt;Note: RFC 959 is listed also for commands introduced in previous documents. &lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Command name &lt;/th&gt;
&lt;th&gt;Notes &lt;/th&gt;
&lt;th&gt;RFC &lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;APPE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AUTH&lt;/td&gt;
&lt;td&gt;TLS supported&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CCC&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CDUP&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CLNT&lt;/td&gt;
&lt;td&gt;Required by some servers&lt;/td&gt;
&lt;td&gt;?&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CWD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DELE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FEAT&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2389&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LANG&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2640&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LIST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MDTM&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;3659&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MKD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NLST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NOOP&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OPTS&lt;/td&gt;
&lt;td&gt;Mainly UTF8 support&lt;/td&gt;
&lt;td&gt;2389&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PASS&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PASV&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PROT&lt;/td&gt;
&lt;td&gt;PROT P, C support&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PSBZ&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PWD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;QUIT&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RETR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RMD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RNFR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RNTO&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SIZE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;3659&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;STOR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;STOU&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SYST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;TYPE&lt;/td&gt;
&lt;td&gt;ASCII and Image (Binary) representation types supported&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;USER&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;NUnit tests&lt;/h2&gt;
&lt;p&gt;Will be posted shortly!&lt;/p&gt;
&lt;h2&gt;TODO&lt;/h2&gt;
&lt;p&gt;Here's the list of things that need to be implemented.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Proxy support &lt;/li&gt;&lt;li&gt;More RFC 2228 commands &lt;/li&gt;&lt;li&gt;Internationalization &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a name="patch"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;vsftpd patch&lt;/h2&gt;
&lt;p&gt;There is a small bug in vsftpd 2.0.7 related to OpenSSL contexts, confirmed by the author and solved in version 2.1.0 which prevents full SSL/TLS compatibility.&lt;br&gt;
Here's a workaround for version 2.0.7. Just apply this patch to &lt;em&gt;ssl.c&lt;/em&gt;: &lt;a href="http://www.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=53986"&gt;
vsftpd-2.0.7-ssl-diff.txt&lt;/a&gt; It's just 3 lines of code! :-)&lt;br&gt;
Please note: this is an unofficial patch.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Well, that's all by now. Please provide your comments, feature requests, bug reports, etc. on the Discussion page.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Alessandro Pilotti &lt;br&gt;
MVP / IIS&lt;br&gt;
&lt;br&gt;
&lt;img title="MVP_Horizontal_FullColor_small.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=112960" alt="MVP_Horizontal_FullColor_small.png"&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>alexp</author><pubDate>Sat, 16 Mar 2013 16:33:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130316043329P</guid></item><item><title>Updated Wiki: Home</title><link>http://ftps.codeplex.com/wikipage?version=45</link><description>&lt;div class="wikidoc"&gt;
&lt;h1&gt;Project Description&lt;/h1&gt;
&lt;p&gt;&lt;br&gt;
This projects provides a &lt;strong&gt;free FTP/FTPS client and class library&lt;/strong&gt; available on any platform supporting the
&lt;strong&gt;.Net Framework 2.0&lt;/strong&gt; or &lt;strong&gt;Mono 2.0&lt;/strong&gt;. This currently includes: Microsoft Windows 2000 SP4/XP SP2/2003/Vista/2008, Linux, Mac OS X 10.4 and above, and, to some extent, Sun Solaris.
&lt;br&gt;
&lt;br&gt;
Please see &lt;a href="http://www.mono-project.com"&gt;http://www.mono-project.com&lt;/a&gt; for a complete list of platforms supported by Mono 2.0.&lt;br&gt;
&lt;br&gt;
Implemented RFCs:&lt;br&gt;
&lt;br&gt;
959, 2228, 2389, 2428, 2640, 3659, 4217&lt;br&gt;
&lt;br&gt;
FTPS (sometimes called FTPES or &lt;em&gt;explicit&lt;/em&gt; FTPS) is implemented as described in the RFC 4217 and RFC 2228 documents.
&lt;a href="http://www.ietf.org/rfc/rfc4217.txt"&gt;http://www.ietf.org/rfc/rfc4217.txt&lt;/a&gt; Support for the so called
&lt;em&gt;implicit&lt;/em&gt; FTPS has also been added (although not standard).&lt;br&gt;
&lt;br&gt;
FTPS should not be confused with SFTP (FTP over SSH).&lt;br&gt;
&lt;br&gt;
For more information please see &lt;a href="http://en.wikipedia.org/wiki/FTPS"&gt;http://en.wikipedia.org/wiki/FTPS&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Note: not all the FTP commands described in the RFC documents are curently implemented (some of them are obsolete, others were not necessary for the purposes of this project). Please see
&lt;a href="#Implemented"&gt;Implemented FTP commands&lt;/a&gt; below for a detailed list of implemeted commands&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.twitter.com/cloudbaseit"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_me-c.png" alt="Follow alexpilotti on Twitter"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="Cloudbase Solutions" href="http://www.cloudbase.it"&gt;&lt;img title="CBSLogo_thumb.png" src="http://i3.codeplex.com/Download?ProjectName=hypervbackup&amp;DownloadId=351258" alt="CBSLogo_thumb.png" width="150" height="132"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;The FTP/FTPS Client&lt;/h2&gt;
&lt;p&gt;The aim of this FTP/FTPS client is to support the advanced features provided by most modern FTP servers, primarily, but not limited to,
&lt;strong&gt;encryption via SSL/TLS&lt;/strong&gt; and &lt;strong&gt;UTF8&lt;/strong&gt;. A list of the implemented RFC standards and specific commands follows.&lt;br&gt;
&lt;br&gt;
The idea of this client was born while preparing some material for a technical speech session I was going to give at the
&lt;em&gt;Italian Microsoft TechDays - WPC 2008&lt;/em&gt;, about IIS 7.0 new features, including the
&lt;strong&gt;Microsoft FTP for IIS 7.0&lt;/strong&gt; add in and its freshly introduced support for SSL/TLS.&lt;br&gt;
&lt;br&gt;
One of the main problems with standard FTP communications, is that all the username / password communication is performed in clear text, easily eavesdropped by sniffing the network traffic. Altough FTP is one of the oldest Internet protocols still in use today,
 some of its features are still largely needed as they can't be easily replaced by, for example, an HTTP server.&lt;br&gt;
&lt;br&gt;
The SSL/TLS encryption feature, as stated in the RFC 4217 document &lt;a href="http://www.ietf.org/rfc/rfc4217.txt"&gt;
http://www.ietf.org/rfc/rfc4217.txt&lt;/a&gt;, provides a solution for this and other security related limitations. Support for SSL/TLS has been introduced in the most used FTP servers:
&lt;strong&gt;Microsoft FTP for IIS 7.0, vsftpd, wu-ftpd, FileZilla server&lt;/strong&gt;, to name a few. Note: vsftpd FTPS support requires version 2.1.0 or a small
&lt;a href="#patch"&gt;patch for version 2.0.7&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Looking for a free client to be used during my session demos, showing interoperability with other platforms, I realized that there was no single piece of software supporting all the features I needed. Furthermore, I wanted to provide a sample on how to connect
 to a FTP server using SSL using Microsoft .Net and the Powershell, but the standard
&lt;em&gt;System.Net.FTPWebRequest&lt;/em&gt; provided by the framework was not powerful enough (more on this below).
&lt;br&gt;
&lt;br&gt;
That was enough to start this project. The client provides also a wide range of options and commands via command line arguments,
&lt;span style="text-decoration:underline"&gt;making it fully functional when used in scripts, without the shortcomings of the standard FTP clients&lt;/span&gt; available on most platforms.&lt;br&gt;
&lt;br&gt;
Portability among platforms (via the .Net Framework 2.0 and Mono 2.0) and compatibility with all the relevant FTPS servers is also a mandatory goal for this project.
&lt;br&gt;
&lt;br&gt;
Please see below for some &lt;a href="#Quick"&gt;Quick usage samples&lt;/a&gt; and the full
&lt;a href="#Command"&gt;Command line reference&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Microsoft Powershell integration&lt;/h2&gt;
&lt;p&gt;The development of specifc CmdLets is in progress. Please stay tuned.&lt;/p&gt;
&lt;h2&gt;Portable GUI&lt;/h2&gt;
&lt;p&gt;A free portable GUI is also planned and will be developed if there's enough feedback on the project.
&lt;br&gt;
&lt;br&gt;
&lt;a name="Quick"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Quick usage samples&lt;/h2&gt;
&lt;p&gt;Note: execute &lt;em&gt;mono ftps.exe &amp;lt;arguments&amp;gt;&lt;/em&gt; when using Mono.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Show the directory contents of a remote directory using anonymous authentication on standard FTP (without SSL/TLS):
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -ssl ClearText -l /pub
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Connect to the server using SSL/TLS during authentication or clear text mode (standard FTP) if FTPS is not supported:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -l /some/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Connect to the server using SSL/TLS on the control channel, accepting invalid certificates without prompting:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl ControlChannelRequired 
     -sslInvalidServerCertHandling Accept -l /some/path
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Download a remote file using control and data channel SSL/TLS encryption: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl DataChannelRequired 
     -g /remote/path/somefile.txt /local/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Upload a local file with a control channel encrypted during authentication only:
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -ssl CredentialsRequired 
     -p /local/path/somefile.txt /remote/path/
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Recursively download a whole directory tree: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -r -g /remote/path/* \local\path\
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Export the server's X.509 certificate on a FTPS connection: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -expCert serverCert.cer
&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Implicit FTPS connection on port 21: &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;ftps -h ftp.yourserver.com -U alex -port 21 -ssl Implicit -l
&lt;/pre&gt;
&lt;p&gt;&lt;br&gt;
&lt;a name="Command"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Command line reference&lt;/h2&gt;
&lt;p&gt;The command line reference, available by executing &lt;em&gt;ftps -?&lt;/em&gt; or &lt;em&gt;mono ftps.exe -?&lt;/em&gt; using Mono, follows:&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;pre&gt;Usage: ftps [options] &amp;lt;command&amp;gt; [command specific arguments]
&lt;/pre&gt;
&lt;p&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;Commands:&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-?, -help&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Shows help and usage info&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-d, -delete&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Deletes a remote file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-expCert, -exportSslServerCert&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Exports the server's SSL/TLS X.509 certificate. The export format is managed by the &amp;quot;sslX509ExportFormat&amp;quot; option&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-f, -features&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Prints the list of features supported by the server, as returned by the FTP FEAT command&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-g, -get, -download&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Downloads the given files in the current directory. File names may include wildcards. Operates recursively if the &amp;quot;r&amp;quot; option is specified&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-l, -list&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Returns the contents of the given directory, or the default directory if no name is provided&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-md, -mkdir&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Creates a remote directory&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-p, -put, -upload&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads the given files or directory contents. File names may include wildcards. Operates recursively if the &amp;quot;r&amp;quot; option is specified&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-pa, -putAppend&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads a file appending it's contents if the given remote file already exists&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-pu, -putUnique&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Uploads a file with a unique name&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-rd, -rmdir&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Removes a remote directory&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-rn, -rename&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Renames a remote file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sys, -system&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Returns a brief description of the remote system&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-cust, -custom&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Sends the given FTP command to the server. Note: only the control channel reply is returned&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;Generic options:&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-dm, -dataMode&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Active or Passive (default) data connection mode&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-h, -hostname&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Name or IP address of the remote host to connect to&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-lf, -logFile&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
ftp commands and server replies log file name&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-ltfs, -logFileTimeStamp&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Adds a timestamp to every command and reply in the log file&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-noCopyrightInfo&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Avoids displaying the copyright information header&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-oda, -overrideDataAddress&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Use the control connection's remote address instead of the one returned by the PASV command&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-P, -password&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Password to be used in case of non anonymous connections. If omitted it will be requested before connecting. Passing this information as a command line parameter is strongly discouraged for security reasons&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-port&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
TCP/IP connection port, default is: 21 for standard FTP or explicit FTPS, 990 for implicit FTPS&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-r, -recursive&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Enable recursion to download or upload entire directory trees&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-t, -timeout&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
TCP/IP connection timeout in seconds (default 120s)&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-tm, -transferMode&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Transfer mode / representation type. &amp;quot;ASCII&amp;quot; or &amp;quot;Binary&amp;quot; (default)&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-U, -username&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Username used to perform the connection. If omitted an anonymous connection will be performed&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-v, -verbose&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Verbose output&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;SSL/TLS specific options:&lt;/span&gt;&lt;/strong&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-ssl, -tls&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
SSL/TLS support. Possible values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ClearText (Standard FTP, no SSL/TLS support) &lt;/li&gt;&lt;li&gt;CredentialsRequested &lt;/li&gt;&lt;li&gt;CredentialsRequired &lt;/li&gt;&lt;li&gt;ControlChannelRequested &lt;/li&gt;&lt;li&gt;ControlChannelRequired &lt;/li&gt;&lt;li&gt;DataChannelRequested (Default) &lt;/li&gt;&lt;li&gt;DataChannelRequired &lt;/li&gt;&lt;li&gt;ControlAndDataChannelsRequested &lt;/li&gt;&lt;li&gt;ControlAndDataChannelsRequired (most secure) &lt;/li&gt;&lt;li&gt;All (alias for ControlAndDataChannelsRequired) &lt;/li&gt;&lt;li&gt;Implicit &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;-sslClientCertPath&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
X.509 client certificate file path&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslInvalidServerCertHandling&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Invalid X.509 server certificate handling. Valid values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Accept &lt;/li&gt;&lt;li&gt;Prompt (default) &lt;/li&gt;&lt;li&gt;Refuse &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;-sslMinCipherStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. cipher algorithm strength (e.g: 168). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslMinHashStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. hash algorithm strength (e.g: 160). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslMinKeyExStrength&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Min. key exchange algorithm strength (e.g: 1024). Default is 0&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;-sslX509ExportFormat&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
X509 certificate export format. Not all formats are available on all platforms. Supported values are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cert (default) &lt;/li&gt;&lt;li&gt;Pkcs12 &lt;/li&gt;&lt;li&gt;SerializedCert &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a name="FTP/FTPS"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;The FTP/FTPS class library&lt;/h2&gt;
&lt;p&gt;The &lt;em&gt;System.Net.FTPWebRequest&lt;/em&gt; class provided by the .Net Framework, is perfect for simple tasks (e.g. downloading or uploading a file or getting a directory list) and supports also SSL via the
&lt;em&gt;EnableSsl&lt;/em&gt; property See: &lt;a href="http://blogs.msdn.com/adarshk/archive/2005/04/22/410925.aspx"&gt;
http://blogs.msdn.com/adarshk/archive/2005/04/22/410925.aspx&lt;/a&gt; . So why a new class for that?
&lt;br&gt;
&lt;br&gt;
The point is that SSL support in FTP is more that an on/off switch (as in HTTP/HTTPS). FTP requires two separate connections: one for the commands (the
&lt;span style="text-decoration:underline"&gt;control&lt;/span&gt; connection) and one for the data (the
&lt;span style="text-decoration:underline"&gt;data&lt;/span&gt; connection), for downloads, uploads and directory listings.&lt;br&gt;
&lt;em&gt;FTPWebRequest.EnableSsl&lt;/em&gt; simply forces the use of SSL on both of them. &lt;em&gt;
The problem is that this is not always suitable&lt;/em&gt;. &lt;br&gt;
&lt;br&gt;
FTP connections are tipically a pain for firewalls, because the control connection uses a standard TCP port (21), but data connections (in so called
&lt;em&gt;passive&lt;/em&gt; mode), tipically listen on a random port, communicated to the client on the control channel. Well, if the connection is not encrypted, as in standard FTP, firewalls are able to do some packet inspection, get the port number sent to the client
 and allow the connection from that client to the server. To cut a long story short, encrypting the control channel means that firewalls will not be able to do packet inspections and, you guessed it, this is where the problems begin. Please see
&lt;a href="http://en.wikipedia.org/wiki/FTPS"&gt;http://en.wikipedia.org/wiki/FTPS&lt;/a&gt; for more on the subject.&lt;br&gt;
&lt;br&gt;
&lt;span style="text-decoration:underline"&gt;There's a partial solution to this problem:&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
Encrypting the control channel during the credentials exchange (USER/PASS commands) and reverting to clear text after that. This is of course far below the goals of the SSL/TLS support, but it's enough for a very large number of needs and is supported by all
 the main FTPS servers. &lt;br&gt;
&lt;br&gt;
This class library provides a number of SSL/TLS related options to deal with this and other issues.&lt;br&gt;
&lt;br&gt;
Aside that, the class library provides support for a large number of standard FTP commands and some very useful features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tracking of the download status via delegate based callbacks (useful to display the download/upload progress)
&lt;/li&gt;&lt;li&gt;Recursive directory trees downloads and uploads &lt;/li&gt;&lt;li&gt;Support for UTF8 in commands and directory listings (by explicitly setting &lt;em&gt;
OPTS UTF8 ON&lt;/em&gt; if available in the features returned by the &lt;em&gt;FEAT&lt;/em&gt; command)
&lt;/li&gt;&lt;li&gt;IPV6 support (planned) &lt;/li&gt;&lt;li&gt;Multi platform (Microsoft Windows, Linux, Mac OS X, did I already said that?) ;-)
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
&lt;strong&gt;The full MSDN style documentation will be released shortly.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
In order to use the FTPS class library, add the &lt;strong&gt;&lt;em&gt;AlexPilotti.FTPS.Client.dll&lt;/em&gt;&lt;/strong&gt; assembly to your project References.&lt;br&gt;
The assembly is available along with the FTPS client on the &lt;span style="text-decoration:underline"&gt;
Releases&lt;/span&gt; page.&lt;br&gt;
&lt;br&gt;
The class library is distributed as free software and can be freely used in your projects, under the terms of the LGPL license.&lt;br&gt;
&lt;br&gt;
Simple class library usage sample in C# (any other CLR compliant language is also supported, e.g.: VB.Net, C&amp;#43;&amp;#43;/CLI, etc.):&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;using&lt;/span&gt; AlexPilotti.FTPS.Client;
&lt;span style="color:blue"&gt;using&lt;/span&gt; AlexPilotti.FTPS.Common;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Net;


&lt;span style="color:blue"&gt;class&lt;/span&gt; Test
{
    &lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;static&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; Main()
    {
        &lt;span style="color:blue"&gt;using&lt;/span&gt; (FTPSClient client = &lt;span style="color:blue"&gt;new&lt;/span&gt; FTPSClient())
        {
            &lt;span style="color:green"&gt;// Connect to the server, with mandatory SSL/TLS &lt;/span&gt;
            &lt;span style="color:green"&gt;// encryption during authentication and &lt;/span&gt;
            &lt;span style="color:green"&gt;// optional encryption on the data channel &lt;/span&gt;
            &lt;span style="color:green"&gt;// (directory lists, file transfers)&lt;/span&gt;
            client.Connect(&lt;span style="color:#a31515"&gt;&amp;quot;ftp.yourserver.com&amp;quot;&lt;/span&gt;, 
                           &lt;span style="color:blue"&gt;new&lt;/span&gt; NetworkCredential(&lt;span style="color:#a31515"&gt;&amp;quot;yourUsername&amp;quot;&lt;/span&gt;, 
                                                 &lt;span style="color:#a31515"&gt;&amp;quot;yourPassword&amp;quot;&lt;/span&gt;), 
                           ESSLSupportMode.CredentialsRequired | 
                           ESSLSupportMode.DataChannelRequested);
			
            &lt;span style="color:green"&gt;// Download a file&lt;/span&gt;
            client.GetFile(&lt;span style="color:#a31515"&gt;&amp;quot;/path/to/remotefile.jpg&amp;quot;&lt;/span&gt;, &amp;quot;c:\\local\\path\\&amp;quot;);
        }
    }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;h2&gt;Snapshots&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;AlexFTPS on Windows Vista:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;em&gt;This screenshots shows the transfer status available during downloads / uploads.&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Vista_640.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=56275" alt="ftps_Vista_640.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;AlexFTPS on Linux:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Linux_640.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=56273" alt="ftps_Linux_640.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;AlexFTPS on Mac OS X:&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;img title="ftps_Mac_OS_X.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=53854" alt="ftps_Mac_OS_X.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;a name="Implemented"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Implemented FTP commands&lt;/h2&gt;
&lt;p&gt;Note: RFC 959 is listed also for commands introduced in previous documents. &lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Command name &lt;/th&gt;
&lt;th&gt;Notes &lt;/th&gt;
&lt;th&gt;RFC &lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;APPE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AUTH&lt;/td&gt;
&lt;td&gt;TLS supported&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CCC&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CDUP&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CLNT&lt;/td&gt;
&lt;td&gt;Required by some servers&lt;/td&gt;
&lt;td&gt;?&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CWD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DELE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FEAT&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2389&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LANG&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2640&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LIST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MDTM&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;3659&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MKD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NLST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NOOP&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OPTS&lt;/td&gt;
&lt;td&gt;Mainly UTF8 support&lt;/td&gt;
&lt;td&gt;2389&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PASS&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PASV&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PROT&lt;/td&gt;
&lt;td&gt;PROT P, C support&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PSBZ&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;2228&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PWD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;QUIT&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RETR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RMD&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RNFR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RNTO&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SIZE&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;3659&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;STOR&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;STOU&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SYST&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;TYPE&lt;/td&gt;
&lt;td&gt;ASCII and Image (Binary) representation types supported&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;USER&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;959&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;NUnit tests&lt;/h2&gt;
&lt;p&gt;Will be posted shortly!&lt;/p&gt;
&lt;h2&gt;TODO&lt;/h2&gt;
&lt;p&gt;Here's the list of things that need to be implemented.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Proxy support &lt;/li&gt;&lt;li&gt;More RFC 2228 commands &lt;/li&gt;&lt;li&gt;Internationalization &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;a name="patch"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;vsftpd patch&lt;/h2&gt;
&lt;p&gt;There is a small bug in vsftpd 2.0.7 related to OpenSSL contexts, confirmed by the author and solved in version 2.1.0 which prevents full SSL/TLS compatibility.&lt;br&gt;
Here's a workaround for version 2.0.7. Just apply this patch to &lt;em&gt;ssl.c&lt;/em&gt;: &lt;a href="http://www.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=53986"&gt;
vsftpd-2.0.7-ssl-diff.txt&lt;/a&gt; It's just 3 lines of code! :-)&lt;br&gt;
Please note: this is an unofficial patch.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Well, that's all by now. Please provide your comments, feature requests, bug reports, etc. on the Discussion page.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Alessandro Pilotti &lt;br&gt;
MVP / IIS&lt;br&gt;
&lt;br&gt;
&lt;img title="MVP_Horizontal_FullColor_small.png" src="http://i3.codeplex.com/Download?ProjectName=ftps&amp;DownloadId=112960" alt="MVP_Horizontal_FullColor_small.png"&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>alexp</author><pubDate>Sat, 16 Mar 2013 16:32:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130316043229P</guid></item><item><title>Patch Uploaded: #14032</title><link>http://ftps.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/harshdeep'&gt;harshdeep&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Patch to replace properties with AutoProperty, and added some comments.&lt;/p&gt;</description><author>harshdeep</author><pubDate>Fri, 08 Mar 2013 07:47:58 GMT</pubDate><guid isPermaLink="false">Patch Uploaded: #14032 20130308074758A</guid></item><item><title>New Post: GetFile returns ulong</title><link>http://ftps.codeplex.com/discussions/435096</link><description>&lt;div style="line-height: normal;"&gt;Can somebody help me with the GetFile(source, destination) method? The return value is ulong. What does the value signify? If it returns 0, does it mean the operation failed? Just need to clarify. &lt;br /&gt;
&lt;/div&gt;</description><author>beol</author><pubDate>Sat, 02 Mar 2013 04:34:24 GMT</pubDate><guid isPermaLink="false">New Post: GetFile returns ulong 20130302043424A</guid></item><item><title>New Post: Clear Control Channel using binary client</title><link>http://ftps.codeplex.com/discussions/434554</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
I try to use binary client in a TLS authentication with clear command and data mode but couldn't achieve it.&lt;br /&gt;
&lt;br /&gt;
I use &lt;strong&gt;-tls CredentialsRequired&lt;/strong&gt; option but control channel is not switching to clear, data only.&lt;br /&gt;
&lt;br /&gt;
My session log shows no CCC command from client.&lt;br /&gt;
&lt;br /&gt;
Could you please advice, I'm new to Alex FTPS maybe i missed something.&lt;br /&gt;
&lt;br /&gt;
Thanks a lot for your help,&lt;br /&gt;
&lt;br /&gt;
Herve&lt;br /&gt;
&lt;/div&gt;</description><author>HerveS</author><pubDate>Tue, 26 Feb 2013 15:14:44 GMT</pubDate><guid isPermaLink="false">New Post: Clear Control Channel using binary client 20130226031444P</guid></item><item><title>New Post: Preserve File Date/Time Stamp</title><link>http://ftps.codeplex.com/discussions/394681</link><description>&lt;div style="line-height: normal;"&gt;&amp;lt;div dir=&amp;quot;ltr&amp;quot;&amp;gt;Thank you very much Gregory. I will try it at work tomorrow and see if I can get it to work.
&amp;lt;div&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;Very sorry for the late response, it went to a junk email on a email account I rarely use.&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;Thanks Again&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;Greg (also)&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;div&amp;gt;
&amp;lt;div id=&amp;quot;SkyDrivePlaceholder&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;hr id=&amp;quot;stopSpelling&amp;quot;&amp;gt;
From: [email removed]&amp;lt;br&amp;gt;
To: [email removed]&amp;lt;br&amp;gt;
Date: Thu, 8 Nov 2012 07:57:53 -0800&amp;lt;br&amp;gt;
Subject: Re: Preserve File Date/Time Stamp [ftps:394681]&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
From: gregorysch&amp;lt;br&amp;gt;
&amp;lt;div id=&amp;quot;ecxThreadNotificationPostBody&amp;quot;&amp;gt;In the System.IO namespace, you can use the following instructions:&amp;lt;br&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;li&amp;gt;File.SetCreationTime(filename, dateInfo) &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;File.SetLastWriteTime(filename, dateInfo) &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;
You can reuse for &amp;amp;quot;dateInfo&amp;amp;quot; parameter the information that you find in &amp;amp;quot;&amp;lt;strong&amp;gt;&amp;lt;em&amp;gt;&amp;amp;#65279;DirectoryListItem&amp;lt;/em&amp;gt;&amp;lt;/strong&amp;gt;&amp;amp;quot; class, the &amp;amp;quot;&amp;lt;strong&amp;gt;&amp;lt;em&amp;gt;CreationTime&amp;lt;/em&amp;gt;&amp;lt;/strong&amp;gt;&amp;amp;quot; field.&amp;lt;br&amp;gt;
Hope it helps,&amp;lt;br&amp;gt;
Greg.&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;br&amp;gt;
&amp;amp;#65279;&amp;amp;#65279;&amp;amp;#65279;&amp;lt;br&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div id=&amp;quot;ecxThreadNotificationFooter&amp;quot;&amp;gt;Read the &amp;lt;a href=&amp;quot;http://ftps.codeplex.com/discussions/394681#post938588&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;
full discussion online&amp;lt;/a&amp;gt;.&amp;lt;br&amp;gt;
To add a post to this discussion, reply to this email (&amp;lt;a href=&amp;quot;mailto:ftps@discussions.codeplex.com?subject=[ftps:394681]&amp;quot;&amp;gt;ftps@discussions.codeplex.com&amp;lt;/a&amp;gt;)&amp;lt;br&amp;gt;
To start a new discussion for this project, email &amp;lt;a href=&amp;quot;mailto:ftps@discussions.codeplex.com&amp;quot;&amp;gt;
ftps@discussions.codeplex.com&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;
You are receiving this email because you subscribed to this discussion on CodePlex. You can
&amp;lt;a href=&amp;quot;https://ftps.codeplex.com/discussions/394681/unsubscribe/&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;
unsubscribe&amp;lt;/a&amp;gt; on CodePlex.com.&amp;lt;br&amp;gt;
Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at CodePlex.com&amp;lt;br&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/div&gt;</description><author>GregMallek</author><pubDate>Thu, 07 Feb 2013 07:22:17 GMT</pubDate><guid isPermaLink="false">New Post: Preserve File Date/Time Stamp 20130207072217A</guid></item></channel></rss>