Con C ++ 17 o versioni successive, c'è l'intestazione standard <filesystem>
con funzione
std::filesystem::create_directories
che dovrebbe essere utilizzata nei moderni programmi C ++. Le funzioni standard C ++ non hanno l'argomento dei permessi espliciti (modalità) specifici di POSIX, però.
Tuttavia, ecco una funzione C che può essere compilata con i compilatori C ++.
/*
@(#)File: mkpath.c
@(#)Purpose: Create all directories in path
@(#)Author: J Leffler
@(#)Copyright: (C) JLSS 1990-2020
@(#)Derivation: mkpath.c 1.16 2020/06/19 15:08:10
*/
/*TABSTOP=4*/
#include "posixver.h"
#include "mkpath.h"
#include "emalloc.h"
#include <errno.h>
#include <string.h>
/* "sysstat.h" == <sys/stat.h> with fixup for (old) Windows - inc mode_t */
#include "sysstat.h"
typedef struct stat Stat;
static int do_mkdir(const char *path, mode_t mode)
{
Stat st;
int status = 0;
if (stat(path, &st) != 0)
{
/* Directory does not exist. EEXIST for race condition */
if (mkdir(path, mode) != 0 && errno != EEXIST)
status = -1;
}
else if (!S_ISDIR(st.st_mode))
{
errno = ENOTDIR;
status = -1;
}
return(status);
}
/**
** mkpath - ensure all directories in path exist
** Algorithm takes the pessimistic view and works top-down to ensure
** each directory in path exists, rather than optimistically creating
** the last element and working backwards.
*/
int mkpath(const char *path, mode_t mode)
{
char *pp;
char *sp;
int status;
char *copypath = STRDUP(path);
status = 0;
pp = copypath;
while (status == 0 && (sp = strchr(pp, '/')) != 0)
{
if (sp != pp)
{
/* Neither root nor double slash in path */
*sp = '\0';
status = do_mkdir(copypath, mode);
*sp = '/';
}
pp = sp + 1;
}
if (status == 0)
status = do_mkdir(path, mode);
FREE(copypath);
return (status);
}
#ifdef TEST
#include <stdio.h>
#include <unistd.h>
/*
** Stress test with parallel running of mkpath() function.
** Before the EEXIST test, code would fail.
** With the EEXIST test, code does not fail.
**
** Test shell script
** PREFIX=mkpath.$$
** NAME=./$PREFIX/sa/32/ad/13/23/13/12/13/sd/ds/ww/qq/ss/dd/zz/xx/dd/rr/ff/ff/ss/ss/ss/ss/ss/ss/ss/ss
** : ${MKPATH:=mkpath}
** ./$MKPATH $NAME &
** [...repeat a dozen times or so...]
** ./$MKPATH $NAME &
** wait
** rm -fr ./$PREFIX/
*/
int main(int argc, char **argv)
{
int i;
for (i = 1; i < argc; i++)
{
for (int j = 0; j < 20; j++)
{
if (fork() == 0)
{
int rc = mkpath(argv[i], 0777);
if (rc != 0)
fprintf(stderr, "%d: failed to create (%d: %s): %s\n",
(int)getpid(), errno, strerror(errno), argv[i]);
exit(rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
}
}
int status;
int fail = 0;
while (wait(&status) != -1)
{
if (WEXITSTATUS(status) != 0)
fail = 1;
}
if (fail == 0)
printf("created: %s\n", argv[i]);
}
return(0);
}
#endif /* TEST */
Le macro STRDUP()
e FREE()
sono versioni di controllo degli errori di
strdup()
e free()
, dichiarate in emalloc.h
(e implementate in
emalloc.c
e estrdup.c
). L' "sysstat.h"
intestazione riguarda le versioni non funzionanti <sys/stat.h>
e può essere sostituita dai <sys/stat.h>
moderni sistemi Unix (ma c'erano molti problemi nel 1990). E "mkpath.h"
dichiara mkpath()
.
Il cambiamento tra v1.12 (versione originale della risposta) e v1.13 (versione modificata della risposta) è stato il test per EEXIST
in
do_mkdir()
. Questo è stato segnalato come necessario da
Switch : grazie, Switch. Il codice di test è stato aggiornato e ha riprodotto il problema su un MacBook Pro (Intel Core i7 a 2,3 GHz, con Mac OS X 10.7.4) e suggerisce che il problema è stato risolto nella revisione (ma il test può solo mostrare la presenza di bug , mai la loro assenza). Il codice mostrato è ora v1.16; sono state apportate modifiche estetiche o amministrative dalla v1.13 (come l'uso al mkpath.h
posto di jlss.h
e includere <unistd.h>
incondizionatamente solo nel codice di test). È ragionevole sostenere che "sysstat.h"
dovrebbe essere sostituito da a
<sys/stat.h>
meno che non si disponga di un sistema insolitamente recalcitrante.
(Con la presente ti viene concesso il permesso di utilizzare questo codice per qualsiasi scopo con attribuzione.)
Questo codice è disponibile nel mio repository SOQ
(Stack Overflow Questions) su GitHub come file mkpath.c
e
mkpath.h
(ecc.)
Nella
sottodirectory src / so-0067-5039 .