coprend
函数是用于复制目录的递归函数,通常在 Linux 系统编程中使用。它允许你将一个目录及其所有内容(包括子目录和文件)复制到另一个位置。下面是一个简单的示例,演示如何使用 coprend
函数:
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
// 递归复制目录
int coprend(const char *src, const char *dest) {
DIR *dir = opendir(src);
if (!dir) {
perror("opendir");
return -1;
}
struct stat st;
if (stat(dest, &st) == -1) {
// 如果目标目录不存在,则创建
mkdir(dest, 0755);
}
struct dirent *entry;
while ((entry = readdir(dir)) != NULL) {
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
continue; // 跳过当前目录和父目录
}
char src_path[1024], dest_path[1024];
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");
closedir(dir);
return -1;
}
if (S_ISDIR(st.st_mode)) {
// 如果是目录,则递归复制
if (coprend(src_path, dest_path) == -1) {
closedir(dir);
return -1;
}
} else {
// 如果是文件,则复制文件内容
FILE *src_file = fopen(src_path, "rb");
FILE *dest_file = fopen(dest_path, "wb");
if (!src_file || !dest_file) {
perror("fopen");
closedir(dir);
return -1;
}
char buffer[1024];
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);
return 0;
}
int main(int argc, char *argv[]) {
if (argc != 3) {
fprintf(stderr, "Usage: %s <source_directory> <destination_directory>
", argv[0]);
return EXIT_FAILURE;
}
const char *src = argv[1];
const char *dest = argv[2];
if (coprend(src, dest) == 0) {
printf("Directory copied successfully.
");
} else {
fprintf(stderr, "Failed to copy directory.
");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
opendir
打开源目录。stat
检查目标目录是否存在,如果不存在则创建。readdir
遍历目录中的每个条目。.
)和父目录(..
)。coprend
。编译并运行程序,传入源目录和目标目录作为参数:
gcc -o coprend coprend.c
./coprend /path/to/source /path/to/destination
请注意,这个示例代码是一个简单的实现,可能需要根据具体需求进行调整和优化。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>