diff options
| -rw-r--r-- | util/folder/path.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/folder/path.cpp b/util/folder/path.cpp index 96f6dbf2fbf..bfe0c67d687 100644 --- a/util/folder/path.cpp +++ b/util/folder/path.cpp @@ -380,12 +380,12 @@ void TFsPath::MkDir(const int mode) const { void TFsPath::MkDirs(const int mode) const { CheckDefined(); - if (!Exists()) { + if (!Exists()) { Parent().MkDirs(mode); MkDir(mode); - } -} - + } +} + void TFsPath::ForceDelete() const { if (!IsDefined()) { return; |
