25

C++ですべてのファイル/サブディレクトリを含むフォルダを削除するにはどうすればよいですか(再帰的削除)?

4

5 に答える 5

23

真剣に:

system("rm -rf /path/to/directory")

おそらくあなたが探しているものはもっとありますが、UNIX固有のものです:

/* Implement system( "rm -rf" ) */
    
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <sys/stat.h>
#include <ftw.h>
#include <unistd.h>

/* Call unlink or rmdir on the path, as appropriate. */
int
rm(const char *path, const struct stat *s, int flag, struct FTW *f)
{
        int status;
        int (*rm_func)(const char *);
        (void)s;
        (void)f;
        rm_func = flag == FTW_DP ? rmdir : unlink;
        if( status = rm_func(path), status != 0 ){
                perror(path);
        } else if( getenv("VERBOSE") ){
                puts(path);
        }
        return status;
}


int
main(int argc, char **argv)
{
        (void)argc;
        while( *++argv ) {
                if( nftw(*argv, rm, OPEN_MAX, FTW_DEPTH) ){
                        perror(*argv);
                        return EXIT_FAILURE;
                }
        }
        return EXIT_SUCCESS;
}
于 2009-07-19T12:52:20.653 に答える
16

Boost.Filesystemboost::remove_allから使用できます。

于 2009-07-19T12:11:52.453 に答える
1

標準 C++ には、これを行う手段がありません。オペレーティング システム固有のコードまたは Boost などのクロスプラットフォーム ライブラリを使用する必要があります。

于 2009-07-19T12:11:00.007 に答える