diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-12-09 05:21:08 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-12-09 05:21:08 -0300 |
commit | 52f13f2339f8c7259d2aa646346b29997b85c0ec (patch) | |
tree | c587411f18b2813367973f14fbd2346217a9c01b /src/common/file_util.cpp | |
parent | e94dd7e2c4fc3f7ca2c15c01bdc301be2b8a4c1b (diff) |
common/file_util: Succeed on CreateDir when the directory exists
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r-- | src/common/file_util.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index d5f6ea2ee8..c4d738bb61 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -98,6 +98,11 @@ bool Delete(const fs::path& path) { bool CreateDir(const fs::path& path) { LOG_TRACE(Common_Filesystem, "directory {}", path.string()); + if (Exists(path)) { + LOG_DEBUG(Common_Filesystem, "path exists {}", path.string()); + return true; + } + std::error_code ec; const bool success = fs::create_directory(path, ec); |