| 53 | // ---------------------------------------------------------------------------------------- |
| 54 | |
| 55 | class dir_create_error : public error |
| 56 | { |
| 57 | public: |
| 58 | dir_create_error( |
| 59 | const std::string& dir_name |
| 60 | ) : |
| 61 | error(EDIR_CREATE,"Error creating directory '" + dir_name + "'."), |
| 62 | name(dir_name) |
| 63 | {} |
| 64 | const std::string& name; |
| 65 | }; |
| 66 | |
| 67 | |
| 68 | void create_directory ( |
no outgoing calls
no test coverage detected