その名前のUnixシステムコールのmkdir(2)のマニュアルページを読んだ後、コールはパスに中間ディレクトリを作成せず、パスの最後のディレクトリのみを作成するようです。ディレクトリ文字列を手動で解析し、各ディレクトリを個別に作成せずに、パスにすべてのディレクトリを作成する方法(または他の機能)はありますか?
残念ながら、それを行うためのシステムコールはありません。これは、エラーの場合に何が起こるべきかについて、本当に明確に定義されたセマンティクスを持つ方法がないためだと推測しています。すでに作成されているディレクトリを残す必要がありますか?それらを削除しますか?削除が失敗した場合はどうなりますか?等々...
ただし、独自のロールを作成するのは非常に簡単で、「 recursive mkdir 」の簡単なグーグルでいくつかの解決策が見つかりました。これが一番近くにありました:
http://nion.modprobe.de/blog/archives/357-Recursive-directory-creation.html
static void _mkdir(const char *dir) {
char tmp[256];
char *p = NULL;
size_t len;
snprintf(tmp, sizeof(tmp),"%s",dir);
len = strlen(tmp);
if(tmp[len - 1] == '/')
tmp[len - 1] = 0;
for(p = tmp + 1; *p; p++)
if(*p == '/') {
*p = 0;
mkdir(tmp, S_IRWXU);
*p = '/';
}
mkdir(tmp, S_IRWXU);
}
うーん、私はmkdir -pがそれをすると思ったのですか?
mkdir -p this/is/a/full/path/of/stuff
これが私の解決策です。以下の関数を呼び出すことにより、指定したファイルパスにつながるすべてのディレクトリが存在することを確認します。ここで_file_path
_引数はディレクトリ名ではなく、mkpath()
を呼び出した後に作成するファイルへのパスであることに注意してください。
たとえば、mkpath("/home/me/dir/subdir/file.dat", 0755)
は、存在しない場合は_/home/me/dir/subdir
_を作成します。 mkpath("/home/me/dir/subdir/", 0755)
は同じことを行います。
相対パスでも機能します。
エラーの場合に_-1
_を返し、errno
を設定します。
_int mkpath(char* file_path, mode_t mode) {
assert(file_path && *file_path);
for (char* p = strchr(file_path + 1, '/'); p; p = strchr(p + 1, '/')) {
*p = '\0';
if (mkdir(file_path, mode) == -1) {
if (errno != EEXIST) {
*p = '/';
return -1;
}
}
*p = '/';
}
return 0;
}
_
_file_path
_はアクション中に変更されますが、後で復元されることに注意してください。したがって、_file_path
_は厳密にはconst
ではありません。
再帰を使用したmkpath()
の別の例は、小さくて読みやすいです。 strdupa()
を使用して、指定されたdir
文字列引数を直接変更しないようにし、malloc()
&free()
を使用しないようにします。必ず_-D_GNU_SOURCE
_でコンパイルしてstrdupa()
を有効にしてください...このコードはGLIBC、EGLIBC、uClibc、およびその他のGLIBC互換Cライブラリでのみ機能します。
_int mkpath(char *dir, mode_t mode)
{
if (!dir) {
errno = EINVAL;
return 1;
}
if (strlen(dir) == 1 && dir[0] == '/')
return 0;
mkpath(dirname(strdupa(dir)), mode);
return mkdir(dir, mode);
}
_
Inadynプロジェクトで、こことValery Frolovの両方から入力した後、次のmkpath()
の改訂版が libite にプッシュされました。
_int mkpath(char *dir, mode_t mode)
{
struct stat sb;
if (!dir) {
errno = EINVAL;
return 1;
}
if (!stat(dir, &sb))
return 0;
mkpath(dirname(strdupa(dir)), mode);
return mkdir(dir, mode);
}
_
もう1つのシステムコールを使用しますが、コードの読みやすさは向上しました。
Bashのソースコード here をご覧ください。具体的には、examples/loadables/mkdir.c、特に136〜210行をご覧ください。それをしたくない場合は、これを扱うソースの一部を次に示します(リンクしたtar.gzから直接取得)。
/* Make all the directories leading up to PATH, then create PATH. Note that
this changes the process's umask; make sure that all paths leading to a
return reset it to ORIGINAL_UMASK */
static int
make_path (path, nmode, parent_mode)
char *path;
int nmode, parent_mode;
{
int oumask;
struct stat sb;
char *p, *npath;
if (stat (path, &sb) == 0)
{
if (S_ISDIR (sb.st_mode) == 0)
{
builtin_error ("`%s': file exists but is not a directory", path);
return 1;
}
if (chmod (path, nmode))
{
builtin_error ("%s: %s", path, strerror (errno));
return 1;
}
return 0;
}
oumask = umask (0);
npath = savestring (path); /* So we can write to it. */
/* Check whether or not we need to do anything with intermediate dirs. */
/* Skip leading slashes. */
p = npath;
while (*p == '/')
p++;
while (p = strchr (p, '/'))
{
*p = '\0';
if (stat (npath, &sb) != 0)
{
if (mkdir (npath, parent_mode))
{
builtin_error ("cannot create directory `%s': %s", npath, strerror (errno));
umask (original_umask);
free (npath);
return 1;
}
}
else if (S_ISDIR (sb.st_mode) == 0)
{
builtin_error ("`%s': file exists but is not a directory", npath);
umask (original_umask);
free (npath);
return 1;
}
*p++ = '/'; /* restore slash */
while (*p == '/')
p++;
}
/* Create the final directory component. */
if (stat (npath, &sb) && mkdir (npath, nmode))
{
builtin_error ("cannot create directory `%s': %s", npath, strerror (errno));
umask (original_umask);
free (npath);
return 1;
}
umask (original_umask);
free (npath);
return 0;
}
おそらく、より一般的でない実装で逃げることができます。
どうやら、私の2つの提案は:
_char dirpath[80] = "/path/to/some/directory";
sprintf(mkcmd, "mkdir -p %s", dirpath);
system(mkcmd);
_
または、system()
を使用したくない場合は、coreutils mkdir
ソースコードを見て、_-p
_オプションの実装方法を確認してください。
実際に使用できるのは次のとおりです。
mkdir -p ./some/directories/to/be/created/
これを行う私の再帰的な方法:
#include <libgen.h> /* Only POSIX version of dirname() */
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
static void recursive_mkdir(const char *path, mode_t mode)
{
char *spath = NULL;
const char *next_dir = NULL;
/* dirname() modifies input! */
spath = strdup(path);
if (spath == NULL)
{
/* Report error, no memory left for string duplicate. */
goto done;
}
/* Get next path component: */
next_dir = dirname(spath);
if (access(path, F_OK) == 0)
{
/* The directory in question already exists! */
goto done;
}
if (strcmp(next_dir, ".") == 0 || strcmp(next_dir, "/") == 0)
{
/* We reached the end of recursion! */
goto done;
}
recursive_mkdir(next_dir, mode);
if (mkdir(path, mode) != 0)
{
/* Report error on creating directory */
}
done:
free(spath);
return;
}
編集:私の古いコードスニペットを修正、バグレポート Namchester
最初の(受け入れられた)回答(十分な担当者ではない)にコメントすることは許可されていないため、新しい回答のコードとしてコメントを投稿します。以下のコードは最初の回答に基づいていますが、いくつかの問題を修正しています。
opath[]
_の先頭の前の文字の読み取りまたは書き込みを行いません(はい、「なぜそのように呼び出しますか?」脆弱性を修正しないのですか?」)opath
のサイズは_PATH_MAX
_になりました(完全ではありませんが、定数よりも優れています)sizeof(opath)
と同じかそれより長い場合、コピー時に適切に終了します(strncpy()
はしません)mkdir()
でできるように、書き込まれたディレクトリのモードを指定できます(ただし、非ユーザー書き込み可能または非ユーザー実行可能を指定すると、再帰は機能しません)#include
_ sを削除しました_// Based on http://nion.modprobe.de/blog/archives/357-Recursive-directory-creation.html
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <limits.h>
static void mkdirRecursive(const char *path, mode_t mode) {
char opath[PATH_MAX];
char *p;
size_t len;
strncpy(opath, path, sizeof(opath));
opath[sizeof(opath) - 1] = '\0';
len = strlen(opath);
if (len == 0)
return;
else if (opath[len - 1] == '/')
opath[len - 1] = '\0';
for(p = opath; *p; p++)
if (*p == '/') {
*p = '\0';
if (access(opath, F_OK))
mkdir(opath, mode);
*p = '/';
}
if (access(opath, F_OK)) /* if path is not terminated with / */
mkdir(opath, mode);
}
int main (void) {
mkdirRecursive("/Users/griscom/one/two/three", S_IRWXU);
return 0;
}
_
より一般的なソリューションの私のショットは次のとおりです。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
typedef int (*dirhandler_t)( const char*, void* );
/// calls itfunc for each directory in path (except for . and ..)
int iterate_path( const char* path, dirhandler_t itfunc, void* udata )
{
int rv = 0;
char tmp[ 256 ];
char *p = tmp;
char *lp = tmp;
size_t len;
size_t sublen;
int ignore_entry;
strncpy( tmp, path, 255 );
tmp[ 255 ] = '\0';
len = strlen( tmp );
if( 0 == len ||
(1 == len && '/' == tmp[ 0 ]) )
return 0;
if( tmp[ len - 1 ] == '/' )
tmp[ len - 1 ] = 0;
while( (p = strchr( p, '/' )) != NULL )
{
ignore_entry = 0;
*p = '\0';
lp = strrchr( tmp, '/' );
if( NULL == lp ) { lp = tmp; }
else { lp++; }
sublen = strlen( lp );
if( 0 == sublen ) /* ignore things like '//' */
ignore_entry = 1;
else if( 1 == sublen && /* ignore things like '/./' */
'.' == lp[ 0 ] )
ignore_entry = 1;
else if( 2 == sublen && /* also ignore things like '/../' */
'.' == lp[ 0 ] &&
'.' == lp[ 1 ] )
ignore_entry = 1;
if( ! ignore_entry )
{
if( (rv = itfunc( tmp, udata )) != 0 )
return rv;
}
*p = '/';
p++;
lp = p;
}
if( strcmp( lp, "." ) && strcmp( lp, ".." ) )
return itfunc( tmp, udata );
return 0;
}
mode_t get_file_mode( const char* path )
{
struct stat statbuf;
memset( &statbuf, 0, sizeof( statbuf ) );
if( NULL == path ) { return 0; }
if( 0 != stat( path, &statbuf ) )
{
fprintf( stderr, "failed to stat '%s': %s\n",
path, strerror( errno ) );
return 0;
}
return statbuf.st_mode;
}
static int mymkdir( const char* path, void* udata )
{
(void)udata;
int rv = mkdir( path, S_IRWXU );
int errnum = errno;
if( 0 != rv )
{
if( EEXIST == errno &&
S_ISDIR( get_file_mode( path ) ) ) /* it's all good, the directory already exists */
return 0;
fprintf( stderr, "mkdir( %s ) failed: %s\n",
path, strerror( errnum ) );
}
// else
// {
// fprintf( stderr, "created directory: %s\n", path );
// }
return rv;
}
int mkdir_with_leading( const char* path )
{
return iterate_path( path, mymkdir, NULL );
}
int main( int argc, const char** argv )
{
size_t i;
int rv;
if( argc < 2 )
{
fprintf( stderr, "usage: %s <path> [<path>...]\n",
argv[ 0 ] );
exit( 1 );
}
for( i = 1; i < argc; i++ )
{
rv = mkdir_with_leading( argv[ i ] );
if( 0 != rv )
return rv;
}
return 0;
}
かなりまっすぐ。これは良い出発点になります
int makeDir(char *fullpath, mode_t permissions){
int i=0;
char *arrDirs[20];
char aggrpaz[255];
arrDirs[i] = strtok(fullpath,"/");
strcpy(aggrpaz, "/");
while(arrDirs[i]!=NULL)
{
arrDirs[++i] = strtok(NULL,"/");
strcat(aggrpaz, arrDirs[i-1]);
mkdir(aggrpaz,permissions);
strcat(aggrpaz, "/");
}
i=0;
return 0;
}
モードの完全なリストについては、この関数をフルパスに加えて、必要なアクセス許可、つまりS_IRUSRを解析します https:// techoverflow.net/2013/04/05/how-to-use-mkdir-from-sysstat-h/
フルパス文字列は「/」文字で分割され、個々のディレクトリがaggrpaz文字列に1つずつ追加されます。各ループの繰り返しはmkdir関数を呼び出し、これまでの集約パスと許可を渡します。この例は改善することができます。mkdir関数の出力をチェックしておらず、この関数は絶対パスでのみ機能します。
与えられた他の2つの答えは、あなたが求めるようなmkdir(1)
ではなくmkdir(2)
に対するものですが、そのプログラムの ソースコード を見て、その方法を見ることができます必要に応じてmkdir(2)
を繰り返し呼び出す-p
オプションを実装します。
私の解決策:
int mkrdir(const char *path, int index, int permission)
{
char bf[NAME_MAX];
if(*path == '/')
index++;
char *p = strchr(path + index, '/');
int len;
if(p) {
len = MIN(p-path, sizeof(bf)-1);
strncpy(bf, path, len);
bf[len]=0;
} else {
len = MIN(strlen(path)+1, sizeof(bf)-1);
strncpy(bf, path, len);
bf[len]=0;
}
if(access(bf, 0)!=0) {
mkdir(bf, permission);
if(access(bf, 0)!=0) {
return -1;
}
}
if(p) {
return mkrdir(path, p-path+1, permission);
}
return 0;
}
非常に簡単な解決策、入力を渡すだけです:mkdir dirname
void execute_command_mkdir(char *input)
{
char rec_dir[500];
int s;
if(strcmp(input,"mkdir") == 0)
printf("mkdir: operand required");
else
{
char *split = strtok(input," \t");
while(split)
{
if(strcmp(split,"create_dir") != 0)
strcpy(rec_dir,split);
split = strtok(NULL, " \t");
}
char *split2 = strtok(rec_dir,"/");
char dir[500];
strcpy(dir, "");
while(split2)
{
strcat(dir,split2);
strcat(dir,"/");
printf("%s %s\n",split2,dir);
s = mkdir(dir,0700);
split2 = strtok(NULL,"/");
}
strcpy(output,"ok");
}
if(s < 0)
printf(output,"Error!! Cannot Create Directory!!");
}