Let's say I have a program that takes paths to the input and output directories from a command line. If the output directory doesn't exist, our program needs to create it. I would like to check (preferably using std::filesystem
) if that path is valid, before sending it to std::filesystem::create_directory()
.
What is the best way to do it?
You gain nothing by doing (pseudo-code alert):
Better to just do:
And handle errors properly if necessary. You may not even need to handle errors here if you handle subsequent errors.
The "if exists" check introduces unnecessary complexity, and introduces a race condition. And even if the directory doesn't exist, you may still not have permission to create it. So in any case your error handling will be the same, rendering the "if exists" check completely pointless.
I guess it's another way of "don't ask permission, ask forgiveness" except with computers you don't need to ask forgiveness.