summaryrefslogtreecommitdiff
path: root/utils/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/file.h')
-rw-r--r--utils/file.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/file.h b/utils/file.h
index 0282c350e..809ffe419 100644
--- a/utils/file.h
+++ b/utils/file.h
@@ -172,4 +172,15 @@ nserror netsurf_path_to_nsurl(const char *path, struct nsurl **url);
*/
nserror netsurf_mkdir_all(const char *fname);
+/**
+ * Recursively remove a directory
+ *
+ * If this returns a failure code, there's an unpredictable amount left
+ * unremoved.
+ *
+ * @param path The path to recursively remove
+ * @return NSERROR_OK on success, or an error code on failure.
+ */
+nserror netsurf_recursive_rm(const char *path);
+
#endif