From 91be7ef78c6b6bae6133add3907682f7b7e4c585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 27 Nov 2018 21:37:26 -0800 Subject: [PATCH] Cleanup. --- include/bx/filepath.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/bx/filepath.h b/include/bx/filepath.h index 605f791..c71a169 100644 --- a/include/bx/filepath.h +++ b/include/bx/filepath.h @@ -112,15 +112,19 @@ namespace bx }; /// Creates a directory named `_filePath`. + /// bool make(const FilePath& _filePath, Error* _err = NULL); /// Creates a directory named `_filePath` along with all necessary parents. + /// bool makeAll(const FilePath& _filePath, Error* _err = NULL); /// Removes file or directory. + /// bool remove(const FilePath& _filePath, Error* _err = NULL); /// Removes file or directory recursivelly. + /// bool removeAll(const FilePath& _filePath, Error* _err = NULL); } // namespace bx