趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
file_utils.h
Go to the documentation of this file.
1 #ifndef HRK_FILE_UTILS_H
2 #define HRK_FILE_UTILS_H
3 
9 #include <string>
10 
11 
12 namespace hrk
13 {
15  extern bool is_file_exist(const std::string& file_path);
16 
17  extern bool mkdir(const std::string& dirname);
18 
19  extern std::string dirname(const std::string& path);
20  extern std::string filename(const std::string& path);
21  extern std::string basename(const std::string& path);
22 }
23 
24 #endif