删除文件夹和所有文件/子目录

发布于 2024-07-28 23:28:30 字数 38 浏览 7 评论 0 原文

如何在 C++ 中删除文件夹及其所有文件/子目录(递归删除)?

How can I delete a folder with all it's files/subdirectories (recursive deletion) in C++?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

风筝在阴天搁浅。 2024-08-04 23:28:30

说真的:

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;
}

Seriously:

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

Perhaps more what you're looking for, but unix specific:

/* 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;
}
糖果控 2024-08-04 23:28:30

您可以使用 ftw()nftw()readdir()readdir_r() 来遍历目录并递归删除文件。
但由于 ftw()nftw()readdir() 都不是线程安全的,所以我推荐 readdir_r() 相反,如果您的程序在多线程环境中运行。

You can use ftw(), nftw(), readdir(), readdir_r() to traverse a directory and delete files recursively.
But since neither ftw(), nftw(), readdir() is thread-safe, I'll recommend readdir_r() instead if your program runs in a multi-threaded environment.

写给空气的情书 2024-08-04 23:28:30

从 C++17 开始,首选答案是使用

std::filesystem::remove_all(const std::filesystem::path& folder)

递归删除文件夹的内容,然后最终删除文件夹,根据 这个

Since C++17 the prefered answer to this would be to use

std::filesystem::remove_all(const std::filesystem::path& folder)

which deletes the content of the folder recursively and then finally deletes the folder, according to this.

贱人配狗天长地久 2024-08-04 23:28:30

标准 C++ 没有提供执行此操作的方法 - 您必须使用操作系统特定的代码或跨平台库(例如 Boost)。

Standard C++ provides no means of doing this - you will have to use operating system specific code or a cross-platform library such as Boost.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文