// // C++ Interface: osutils // // Description: Agr // // // Author: smidl , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #include "itpp_ext.h" using namespace std; /*! @brief Function concats name of a directory and file */ void get_fname ( char* filename, std::string &dirname, std::string &f ); /*! @brief Function creates a directory and raises it_error if it is not possible @param dirname name of the directory to be created @param rewrite if true then existence of the directory is not an error */ void makedir(string &dirname, bool rewrite = true);