Follow-up to #24265
Marking as draft until #24265 is merged as this PR builds on top of that PR
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
Reviewers, this pull request conflicts with the following ones:
gArgs
from bdb.h
and sqlite.h
by kiminuo)If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.
385@@ -399,6 +386,23 @@ std::optional<unsigned int> ArgsManager::GetArgFlags(const std::string& name) co
386 return std::nullopt;
387 }
388
389+fs::path ArgsManager::GetFileArg(std::string pathlike_arg, const fs::path& pathDefault) const
pathlike_arg
is in snake case notation, pathDefault
is in camel case notation.
GetPathArg
and GetFileArg
methods which are exactly the same except one strips trailing slashes and one doesn’t. I don’t think it’s likely we will have a need for the one which preserves trailing slashes. The commit from the other PR also adds unit test coverage.