]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - sftp.h
Document /DNO_SECURITY compile option.
[PuTTY.git] / sftp.h
diff --git a/sftp.h b/sftp.h
index 877b01e675ef9ff4f61581f26db7e7a1e93e50b7..2eef6e992bd885535347053737c6629b789d78be 100644 (file)
--- a/sftp.h
+++ b/sftp.h
@@ -121,6 +121,21 @@ struct fxp_handle *fxp_opendir(char *path);
  */
 void fxp_close(struct fxp_handle *handle);
 
+/*
+ * Makes a directory
+ */
+int fxp_mkdir(char *path);
+
+/*
+ * Removes a directory
+ */
+int fxp_rmdir(char *path);
+
+/*
+ * Removes a file
+ */
+int fxp_rm(char *fname);
+
 /*
  * Read from a file.
  */