/** * \file mkdir.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS */ #include #include #include #include #include #include "LString.h" #include "lyxlib.h" int lyx::support::mkdir(string const & pathname, unsigned long int mode) { // FIXME: why don't we have mode_t in lyx::mkdir prototype ?? return ::mkdir(pathname.c_str(), mode_t(mode)); }