| 543 | * @retval int Error code |
| 544 | */ |
| 545 | template <typename T> int createDirectory(const T& path) |
| 546 | { |
| 547 | CHECK_FS(mkdir); |
| 548 | return fileSystem->mkdir(path); |
| 549 | } |
| 550 | |
| 551 | /** @brief Create a directory and all required parent directories |
| 552 | * @param path Path to directory |