In C++, I want to create a directory from a path "path/that/consists/of/several/elements". Also I want to create all parent directories of that directory in case they are not existing. How to do that with std C++?
In C++, I want to create a directory from a path "path/that/consists/of/several/elements". Also I want to create all parent directories of that directory in case they are not existing. How to do that with std C++?