diff options
Diffstat (limited to 'src/filesys.h')
-rw-r--r-- | src/filesys.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/filesys.h b/src/filesys.h index 6dbc426a5..e46b17b0d 100644 --- a/src/filesys.h +++ b/src/filesys.h @@ -40,6 +40,12 @@ bool CreateDir(std::string path); bool PathExists(std::string path); +// Only pass full paths to this one. True on success. +bool RecursiveDelete(std::string path); + +// Only pass full paths to this one. True on success. +bool RecursiveDeleteContent(std::string path); + }//fs #endif |