FlagFtp icon indicating copy to clipboard operation
FlagFtp copied to clipboard

FlagFtp is a FTP library for .NET, that supports various operations, such as retrieving file lists, write and read from/to files, retrieving file and directory infos, etc...

Results 4 FlagFtp issues
Sort by recently updated
recently updated
newest added

Please add a license so the project can be used in projects that will be published or distributed (rather than remain individual-private/-personal). https://choosealicense.com/

Say you have `var uri = ftp://host/directory/subdir/` If you were to call `FtpClient.DirectoryExists(uri)` The method DirectoryExists checks whether `subdir` is in the folder `ftp://host/directory/` [But because of this line](https://github.com/flagbug/FlagFtp/blob/master/FlagFtp/FlagFtp/FtpClient.cs#L310), the...

The FTP server I access does give back a different LIST layout: 12-02-14 10:40AM 10019 12-02-14 11:08AM 10020 11-19-14 03:35AM 21 11-19-14 04:33AM 22 11-19-14 05:50AM 23 11-19-14 09:57AM 24...

From http://flagftp.codeplex.com/workitem/1 I'm trying to remove a directory tree; so starting from base dir I traverse subdirs deleting files and finally dir itself. ``` public void DeleteDir(FtpDirectoryInfo di) { var...