Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.

Status ID Uploaded By Description Work Items Action
Being evaluated
1462 Jul 2 2008 at
4:23 PM
judahr FTPdirectory: Ran into problem where Ftp server returned directories using \n as line seperator. Modified constructor to handle either method.
Download

Being evaluated
1461 Jul 2 2008 at
4:07 PM
judahr Added no parameter overload for GetFiles() and support for same in GetFileOrDir.
Download

Being evaluated
1460 Jul 2 2008 at
4:04 PM
judahr Added Last Exception property. Variable populated within each catch statement. Based on v1.1 code.
Download

Being evaluated
122 Jul 7 2007 at
7:26 PM
ksoft Added delegate and event to get FTP progress (bytes read and total bytes read) on uploads and downloads.
Use in the following manner:

FTPclient MyFTP = new FTPclient("site.com", "user", "pass", false);
MyFTP.FTPProgress += new FTPclient.FTPProgressHandler(MyFTP_FTPProgress);
MyFTP.Upload("localfile.txt", "remotefile.txt");

void MyFTP_FTPProgress(FTPclient.FTPProgressEventArgs e)
{
System.Diagnostics.Debug.WriteLine("Wrote " + e.TotalBytesTransfered + " total bytes.");
}

Download

Being evaluated
106 Jun 29 2007 at
8:40 PM
AppStar The timestamp from my ftp server was returning a datetime without a year causing the timestamp to not parse. I added a new function to properly parse the date by using the current year. I don't know of an easy way to retrieve the actual file year so the current year will have to do for now.

Modified: FTPfileInfo.New constructor
Added: FTPfileInfo.TryDateParseWithoutYear private method
Added: _DateWithoutYearPattern constant


Download

Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | CodePlex Blog | Version 2008.12.9.14291