Tuesday, October 16, 2012

Linux C++ / Some basics


Create directory



#include <sys/types.h>
#include <sys/stat.h>

int status = mkdir("dir_path", S_IRWXU);

No comments:

Post a Comment

I would be glad to know if this post helped you.