diff options
author | mkalinin <[email protected]> | 2022-02-10 16:52:04 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:04 +0300 |
commit | 903e2b45f82e8b508c9a33ce0a0e51e419423343 (patch) | |
tree | b1ed20a102bb42cf335ba832b604724178323640 /util | |
parent | b3f694bf40fc2866a161b2d25911171879b7ef18 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util')
-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 bfe0c67d687..96f6dbf2fbf 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; |