Skip to content

Commit

Permalink
修复文件夹中有隐藏文件判定为空的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xia-chu committed Dec 2, 2023
1 parent 7a40327 commit ed18537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util/File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static bool isEmptyDir(const std::string &path) {
}
empty = false;
return false;
}, true);
}, true, true);
return empty;
}

Expand Down

0 comments on commit ed18537

Please sign in to comment.