summaryrefslogtreecommitdiffstats
path: root/util/system/fs.cpp
diff options
context:
space:
mode:
authoryazevnul <[email protected]>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/system/fs.cpp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/system/fs.cpp')
-rw-r--r--util/system/fs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/system/fs.cpp b/util/system/fs.cpp
index c95e77e4df9..d2611a8ccc4 100644
--- a/util/system/fs.cpp
+++ b/util/system/fs.cpp
@@ -43,7 +43,7 @@ void NFs::RemoveRecursive(const TString& path) {
switch (it->fts_info) {
case FTS_DOT:
case FTS_D:
- break;
+ break;
default:
if (!NFs::Remove(it->fts_path)) {
ythrow TSystemError() << errStr << it->fts_path << " with cwd (" << NFs::CurrentWorkingDirectory() << ")";
@@ -55,7 +55,7 @@ void NFs::RemoveRecursive(const TString& path) {
bool NFs::MakeDirectory(const TString& path, EFilePermissions mode) {
#if defined(_win_)
- Y_UNUSED(mode);
+ Y_UNUSED(mode);
return NFsPrivate::WinMakeDirectory(path);
#else
return mkdir(path.data(), mode) == 0;
@@ -65,8 +65,8 @@ bool NFs::MakeDirectory(const TString& path, EFilePermissions mode) {
bool NFs::MakeDirectoryRecursive(const TString& path, EFilePermissions mode, bool alwaysCreate) {
if (NFs::Exists(path) && TFileStat(path).IsDir()) {
if (alwaysCreate) {
- ythrow TIoException() << "path " << path << " already exists"
- << " with cwd (" << NFs::CurrentWorkingDirectory() << ")";
+ ythrow TIoException() << "path " << path << " already exists"
+ << " with cwd (" << NFs::CurrentWorkingDirectory() << ")";
}
return true;
} else {