QUOTE(Antiokus @ 23 Feb, 2007 - 03:57 AM)

Can someone set me on the right path for creating new folders in C++. I have no problem navigating files and folders but if the directory isn't there it won't create it. Any way of making that happen?
many compilers have <dir.h> try
CODE
#include <dir.h>
int main()
{
mkdir("c:\\directory");
return 0;
}