summaryrefslogtreecommitdiff
path: root/apps/netutils/ftpc/ftpc_rmdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/ftpc/ftpc_rmdir.c')
-rw-r--r--apps/netutils/ftpc/ftpc_rmdir.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/netutils/ftpc/ftpc_rmdir.c b/apps/netutils/ftpc/ftpc_rmdir.c
index caa50392f..bb86941ae 100644
--- a/apps/netutils/ftpc/ftpc_rmdir.c
+++ b/apps/netutils/ftpc/ftpc_rmdir.c
@@ -85,6 +85,17 @@ int ftpc_rmdir(SESSION handle, FAR const char *path)
ptr = strdup(path);
ftpc_stripslash(ptr);
+ /* An RMD request asks the server to remove a directory. A typical server
+ * accepts RMD with:
+ *
+ * - "250 Requested file action okay, completed" if the directory was
+ * successfully removed
+ *
+ * Or rejects RMD with:
+ *
+ * - "550 Requested action not taken" if the removal failed.
+ */
+
ret = ftpc_cmd(session, "RMD %s", ptr);
free(ptr);
return ret;