CoreNEURON
file_utils.hpp
Go to the documentation of this file.
1
/*
2
# =============================================================================
3
# Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4
#
5
# See top-level LICENSE file for details.
6
# =============================================================================
7
*/
8
9
/**
10
* @file file_utils.h
11
* @brief Utility functions for file/directory management
12
*
13
*/
14
15
#pragma once
16
17
/** @brief Creates directory if doesn't exisit (similar to mkdir -p)
18
* @param Directory path
19
* @return Status
20
*/
21
int
mkdir_p
(
const
char
* path);
mkdir_p
int mkdir_p(const char *path)
Creates directory if doesn't exisit (similar to mkdir -p)
Definition:
file_utils.cpp:20
coreneuron
io
file_utils.hpp