diff options
author | rdna <rdna@yandex-team.ru> | 2022-02-10 16:48:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:05 +0300 |
commit | 7804d69d166cc162c0be19dafd698a6ad7e42b25 (patch) | |
tree | 1a5e99bcef6e3f18d115f0a34d227d14178b6ce8 /util/folder/path.h | |
parent | 10ade5dcb952a8fae61f734485641a8409e1c545 (diff) | |
download | ydb-7804d69d166cc162c0be19dafd698a6ad7e42b25.tar.gz |
Restoring authorship annotation for <rdna@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/folder/path.h')
-rw-r--r-- | util/folder/path.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/util/folder/path.h b/util/folder/path.h index 2fb4d6b4ef3..e562786c5c9 100644 --- a/util/folder/path.h +++ b/util/folder/path.h @@ -10,7 +10,7 @@ #include <util/string/cast.h> #include <util/system/fstat.h> #include <util/system/platform.h> -#include <util/system/sysstat.h> +#include <util/system/sysstat.h> #include <util/system/yassert.h> #include <utility> @@ -135,22 +135,22 @@ public: TFsPath Child(const TString& name) const; - /** - * @brief create this directory - * - * @param mode specifies permissions to use as described in mkdir(2), makes sense only on Unix-like systems. + /** + * @brief create this directory + * + * @param mode specifies permissions to use as described in mkdir(2), makes sense only on Unix-like systems. * * Nothing to do if dir exists. - */ - void MkDir(const int mode = MODE0777) const; - - /** - * @brief create this directory and all parent directories as needed - * - * @param mode specifies permissions to use as described in mkdir(2), makes sense only on Unix-like systems. - */ - void MkDirs(const int mode = MODE0777) const; - + */ + void MkDir(const int mode = MODE0777) const; + + /** + * @brief create this directory and all parent directories as needed + * + * @param mode specifies permissions to use as described in mkdir(2), makes sense only on Unix-like systems. + */ + void MkDirs(const int mode = MODE0777) const; + // XXX: rewrite to return iterator void List(TVector<TFsPath>& children) const; void ListNames(TVector<TString>& children) const; |