vote up 2 vote down star

hello,

what is a convenient way to create a directory when a path like this is given: "\server\foo\bar\"

note that the intermediate directories may not exist.

CreateDirectory and mkdir only seem to create the last part of a directory and give an error otherwise.

the platform is windows, MSVC compiler.

thanks!

flag

4 Answers

vote up 4 vote down check

SHCreateDirectoryEx() can do that. It's available on XP SP2 and newer versions of Windows.

link|flag
vote up 5 vote down

If you can use an external library, I'd look at boost::filesystem

#include <boost/filesystem.hpp>
namespace fs=boost::filesystem;

int main(int argc, char** argv)
{
    fs::create_directories("/some/path");
}
link|flag
vote up 1 vote down

I'd write a loop. Split the path into components, and "walk it", i.e. starting at the beginning, check to see if it exists. If it does, enter it and continue. If it does not, create it, enter it and continue. For bonus points, detect if a component exists, but is a file rather than an a directory.

link|flag
thanks, good idea. although i would expect a function in the winapi or the stl that does exactly this? – matt Sep 3 at 14:53
vote up 0 vote down

You can also use template bool create_directories(const Path & p) from Boost::Filesystem library. And it is available not only in Windows.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.