温馨提示×

Linux copendir如何处理子目录

小樊
36
2025-11-11 14:24:18
栏目: 智能运维

在Linux中,cop estruct是一个用于复制目录及其内容的函数。要处理子目录,你需要递归地遍历源目录中的所有子目录和文件,并将它们复制到目标目录。以下是一个简单的示例,说明如何使用cop estruct处理子目录:

#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>

void copy_directory_contents(const char *src, const char *dest) {
    DIR *dir = opendir(src);
    struct dirent *entry;
    struct stat st;

    if (!dir) {
        perror("opendir");
        return;
    }

    while ((entry = readdir(dir)) != NULL) {
        if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
            continue;
        }

        snprintf(src_path, sizeof(src_path), "%s/%s", src, entry->d_name);
        snprintf(dest_path, sizeof(dest_path), "%s/%s", dest, entry->d_name);

        if (stat(src_path, &st) == -1) {
            perror("stat");
            continue;
        }

        if (S_ISDIR(st.st_mode)) {
            mkdir(dest_path, st.st_mode);
            copy_directory_contents(src_path, dest_path);
        } else {
            FILE *src_file = fopen(src_path, "rb");
            FILE *dest_file = fopen(dest_path, "wb");

            if (!src_file || !dest_file) {
                perror("fopen");
                continue;
            }

            char buffer[4096];
            size_t bytes_read;

            while ((bytes_read = fread(buffer, 1, sizeof(buffer), src_file)) > 0) {
                fwrite(buffer, 1, bytes_read, dest_file);
            }

            fclose(src_file);
            fclose(dest_file);
        }
    }

    closedir(dir);
}

int main(int argc, char *argv[]) {
    if (argc != 3) {
        fprintf(stderr, "Usage: %s <source_directory> <destination_directory>\n", argv[0]);
        return 1;
    }

    const char *src = argv[1];
    const char *dest = argv[2];

    mkdir(dest, 0755);
    copy_directory_contents(src, dest);

    return 0;
}

这个示例程序接受两个命令行参数:源目录和目标目录。它首先创建目标目录(如果尚不存在),然后调用copy_directory_contents函数递归地复制源目录中的所有内容到目标目录。对于每个子目录,它会创建相应的目标子目录,并继续递归处理。对于每个文件,它会打开源文件和目标文件,然后逐个字节地复制文件内容。

0