------------------------------------------------------------------- Creates an new directory at the given path. */
| 197 | // ------------------------------------------------------------------- |
| 198 | /** Creates an new directory at the given path. */ |
| 199 | bool CreateDirectory(const std::string &path) { |
| 200 | ai_assert( nullptr != mWrapped ); |
| 201 | return mWrapped->CreateDirectory(path); |
| 202 | } |
| 203 | |
| 204 | // ------------------------------------------------------------------- |
| 205 | /** Will change the current directory to the given path. */ |
no outgoing calls
no test coverage detected