dirfilemanip.h

Go to the documentation of this file.
00001 #ifndef __DIRFILEMANIP_H__
00002 #define __DIRFILEMANIP_H__
00003 
00004 #include <string>
00005 
00006 // Create a directory
00007 bool createDirectory(const std::string& dir);
00008 
00009 // Check if file exists.
00010 bool checkFile(const std::string& file);
00011 
00012 // Expand env. variable in dir name.
00013 std::string expand(const std::string& dir);
00014 
00015 #endif