9
0
Fork 0
barebox/lib/make_directory.c

59 lines
937 B
C
Raw Permalink Normal View History

2007-09-27 09:59:18 +00:00
#include <string.h>
#include <errno.h>
#ifdef __BAREBOX__
2007-09-27 09:59:18 +00:00
#include <fs.h>
#include <malloc.h>
2007-10-07 12:27:24 +00:00
#include <common.h>
2007-09-27 09:59:18 +00:00
#endif
int make_directory(const char *dir)
{
char *s = strdup(dir);
char *path = s;
char c;
int ret = 0;
2007-09-27 09:59:18 +00:00
do {
c = 0;
/* Bypass leading non-'/'s and then subsequent '/'s. */
while (*s) {
if (*s == '/') {
do {
++s;
} while (*s == '/');
c = *s; /* Save the current char */
*s = 0; /* and replace it with nul. */
break;
}
++s;
}
if (mkdir(path, 0777) < 0) {
/* If we failed for any other reason than the directory
* already exists, output a diagnostic and return -1.*/
if (errno != EEXIST) {
ret = -errno;
2007-09-27 09:59:18 +00:00
break;
}
2007-09-27 09:59:18 +00:00
}
if (!c)
goto out;
/* Remove any inserted nul from the path (recursive mode). */
*s = c;
} while (1);
out:
free(path);
if (ret)
errno = -ret;
return ret;
2007-09-27 09:59:18 +00:00
}
#ifdef __BAREBOX__
2007-10-07 12:27:24 +00:00
EXPORT_SYMBOL(make_directory);
#endif