X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sftp.h;h=2eef6e992bd885535347053737c6629b789d78be;hb=fb46f1b77dec7259c7e383db0f36252b8f393649;hp=877b01e675ef9ff4f61581f26db7e7a1e93e50b7;hpb=3730ada5ce457468441b32d7e84157e481b8ba75;p=PuTTY.git diff --git a/sftp.h b/sftp.h index 877b01e6..2eef6e99 100644 --- 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. */