Skip to content

Commit

Permalink
add rmda to faq
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Jul 24, 2019
1 parent 6416000 commit c8b8786
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ It is written entirely in C#, with no external dependencies. FluentFTP is releas
- Easily send [server-specific](https://github.com/robinrodricks/FluentFTP/issues/88) FTP commands using the `Execute()` method
- Explicit and Implicit [SSL connections](#faq_ftps) are supported for the control and data connections using .NET's `SslStream`
- Passive and active data connections (PASV, EPSV, PORT and EPRT)
- Supports Unix CHMOD command, PRET command, ProFTPD's SITE MKDIR and RMDIR commands
- Supports Unix CHMOD command, PRET command, ProFTPD's SITE MKDIR and RMDIR commands, Serv-U's RMDA command
- Supports [FTP Proxies](#faq_loginproxy) (User@Host, HTTP 1.1, BlueCoat)
- [FTP command logging](#faq_log) using `TraceListeners` (passwords omitted) to [trace](#faq_trace) or [log output](#faq_logfile) to a file
- SFTP is not supported as it is FTP over SSH, a completely different protocol (use [SSH.NET](https://github.com/sshnet/SSH.NET) for that)
Expand Down Expand Up @@ -595,6 +595,7 @@ Mapping table documenting supported FTP commands and the corresponding API..
| **SITE MKDIR** | CreateDirectory() | Create a directory with server-side recursion (ProFTPD only) |
| **RMD** | DeleteDirectory() | Delete a directory |
| **SITE RMDIR** | DeleteDirectory() | Delete a directory with server-side recursion (ProFTPD only) |
| **RMDA** | DeleteDirectory() | Delete a directory with server-side recursion (Serv-U only) |
| **CWD** | SetWorkingDirectory() | Change the working directory |
| **PWD** | GetWorkingDirectory() | Get the working directory |
| **SIZE** | GetFileSize() | Get the filesize in bytes |
Expand Down

0 comments on commit c8b8786

Please sign in to comment.