您好我正在尝试创建一个在 unix 中模拟 CP 程序的递归复制函数。所以基本上,如果我使用 -r 选项运行程序,它将复制一个包含所有子目录的文件夹。我正在使用以下功能。
void copyDirectory(char *destDir, char *dirName)
{
printf("copyDirectory run \n");
int charCnt;
int srcFd;
int dstFd;
char* sourcePath;
char* destPath;
DIR *dir = opendir(dirName);
if(dir == NULL){
return;
}
char Path[256], *EndPtr = Path;
struct dirent *e;
strcpy(Path, dirName);
EndPtr += (strlen(dirName)+1);
while((e = readdir(dir)) != NULL){
sourcePath = malloc(strlen(Path)+1+strlen(e->d_name));
destPath = malloc(strlen(destDir)+1+strlen(Path));
strcpy(destPath, destDir);
strcat(destPath, slash);
strcat(destPath, Path);
if (0 != access(destPath, F_OK)) {
mkdir(destPath,0777);
printf("mkdir %s \n", destPath);
}
strcpy(sourcePath, Path);
strcat(sourcePath, slash);
strcat(sourcePath, e->d_name);
printf("copyDirectory destPath = %s \n", destPath);
printf("copyDirectory sourcePath = %s \n", sourcePath);
if(strcmp(e->d_name, dott) == 0){
continue;
}
if(strcmp(e->d_name, dot) == 0){
continue;
}
if(whatType(sourcePath) == 1){
copyDirectory(destDir, sourcePath);
}
else{
/* copyFile(destPath, sourcePath);*/
}
free(sourcePath);
free(destPath);
}
}
如果我使用以下命令行运行程序,这似乎工作正常。
Mycopy Sourcefolder/ DestinationFoler/
但是当我用这个命令行运行它时,我程序中的 mkdir 函数停止工作。
Mycopy Sourcefolder/Subfolder/ DestinationFoler/
奇怪的是,我在 mkdir 调用中放置了一个 printf 标记,以查看 destPath 是什么,并且格式看起来与我调用不使用子文件夹的程序时没有什么不同。到底是怎么回事?