tags:

views:

527

answers:

4

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!

+1  A: 

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.

unwind
thanks, good idea. although i would expect a function in the winapi or the stl that does exactly this?
clamp
+4  A: 

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

Ferruccio
+6  A: 

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");
}
gnud
A: 

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

Dejw