diff options
author | mkalinin <mkalinin@yandex-team.ru> | 2022-02-10 16:52:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:04 +0300 |
commit | 903e2b45f82e8b508c9a33ce0a0e51e419423343 (patch) | |
tree | b1ed20a102bb42cf335ba832b604724178323640 | |
parent | b3f694bf40fc2866a161b2d25911171879b7ef18 (diff) | |
download | ydb-903e2b45f82e8b508c9a33ce0a0e51e419423343.tar.gz |
Restoring authorship annotation for <mkalinin@yandex-team.ru>. Commit 1 of 2.
-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 bfe0c67d68..96f6dbf2fb 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; |