You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The constructor expression file_observer(".") — which is a quite natural way to say store output in the current directory — throws an exception with the following message:
The constructor expression
file_observer(".")
— which is a quite natural way to say store output in the current directory — throws an exception with the following message:Presumably, this is because
create_directories()
won't create a directory named ".".I can see two different ways to fix this:
boost::filesystem::exists()
before attempting to create it.boost::filesystem::absolute()
before passing it tocreate_directories()
.The text was updated successfully, but these errors were encountered: