X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/60e4458beac10737c37507e9006a070dcb1a3dfd..9954aaa37368a233dc614d610ca68c2ce5a7e8cd:/sftp.h diff --git a/sftp.h b/sftp.h index 877b01e6..2eef6e99 100644 --- a/sftp.h +++ b/sftp.h @@ -122,6 +122,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. */ int fxp_read(struct fxp_handle *handle, char *buffer, uint64 offset,