2001-06-22 01:11:37 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini make_directory implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Matt Kraai.
|
2002-08-23 22:49:26 +05:30
|
|
|
*
|
|
|
|
* Rewriten in 2002
|
|
|
|
* Copyright (C) 2002 Glenn McGrath
|
|
|
|
* Copyright (C) 2002 Vladimir N. Oleynik
|
2001-06-22 01:11:37 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2002-08-25 01:30:52 +05:30
|
|
|
#include <string.h>
|
2001-06-22 01:11:37 +05:30
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2001-06-22 08:37:19 +05:30
|
|
|
#include <stdlib.h>
|
2001-06-22 01:11:37 +05:30
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* Create the directory PATH with mode MODE, or the default if MODE is -1.
|
|
|
|
* Also create parent directories as necessary if flags contains
|
|
|
|
* FILEUTILS_RECUR. */
|
|
|
|
|
2001-08-02 15:28:19 +05:30
|
|
|
int make_directory (char *path, long mode, int flags)
|
2001-06-22 01:11:37 +05:30
|
|
|
{
|
2002-08-23 22:49:26 +05:30
|
|
|
int ret;
|
2001-06-22 01:11:37 +05:30
|
|
|
|
2002-08-23 22:49:26 +05:30
|
|
|
/* Calling apps probably should use 0777 instead of -1
|
|
|
|
* then we dont need this condition
|
|
|
|
*/
|
|
|
|
if (mode == -1) {
|
|
|
|
mode = 0777;
|
|
|
|
}
|
|
|
|
if (flags == FILEUTILS_RECUR) {
|
|
|
|
char *pp = strrchr(path, '/');
|
|
|
|
if (pp) {
|
|
|
|
*pp = '\0';
|
|
|
|
make_directory(path, mode, flags);
|
|
|
|
*pp = '/';
|
2001-06-22 01:11:37 +05:30
|
|
|
}
|
|
|
|
}
|
2002-08-23 22:49:26 +05:30
|
|
|
ret = mkdir(path, mode);
|
2002-08-25 01:41:38 +05:30
|
|
|
if (ret == -1) {
|
|
|
|
if (errno == EEXIST) {
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
perror_msg("Cannot create directory %s", path);
|
|
|
|
}
|
2002-08-23 22:49:26 +05:30
|
|
|
}
|
2002-08-25 01:41:38 +05:30
|
|
|
return(ret);
|
2001-06-22 01:11:37 +05:30
|
|
|
}
|