CoreNEURON
file_utils.cpp
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 #include <cstdio>
10 #include <cstring>
11 #include <cstdlib>
12 #include <sys/stat.h>
13 #include <errno.h>
14 
15 #if defined(MINGW)
16 #define mkdir(dir_name, permission) _mkdir(dir_name)
17 #endif
18 
19 /* adapted from : gist@jonathonreinhart/mkdir_p.c */
20 int mkdir_p(const char* path) {
21  const int path_len = strlen(path);
22  if (path_len == 0) {
23  printf("Warning: Empty path for creating directory");
24  return -1;
25  }
26 
27  char* dirpath = new char[path_len + 1];
28  strcpy(dirpath, path);
29  errno = 0;
30 
31  /* iterate from outer upto inner dir */
32  for (char* p = dirpath + 1; *p; p++) {
33  if (*p == '/') {
34  /* temporarily truncate to sub-dir */
35  *p = '\0';
36 
37  if (mkdir(dirpath, S_IRWXU) != 0) {
38  if (errno != EEXIST)
39  return -1;
40  }
41  *p = '/';
42  }
43  }
44 
45  if (mkdir(dirpath, S_IRWXU) != 0) {
46  if (errno != EEXIST) {
47  return -1;
48  }
49  }
50 
51  delete[] dirpath;
52  return 0;
53 }
mkdir_p
int mkdir_p(const char *path)
Creates directory if doesn't exisit (similar to mkdir -p)
Definition: file_utils.cpp:20