在C语言中,可以使用`rename`函数来重命名文件。`rename`函数的原型如下:
```c
int rename(const char *oldpath, const char *newpath);
```
其中,`oldpath`是旧文件名,`newpath`是新文件名或者新位置。如果目标文件已存在,`rename`函数会自动覆盖它。
修改单个文件
要修改单个文件的名称,可以直接使用`rename`函数:
```c
include include int main() { const char *oldname = "oldfile.txt"; const char *newname = "newfile.txt"; if (rename(oldname, newname) == 0) { printf("文件重命名成功。\n"); } else { printf("文件重命名失败。\n"); } return 0; } ``` 批量修改文件 如果要按一定规则修改某目录下所有文件,可以使用`opendir`遍历目录,然后修改该目录下文件。以下是一个示例代码: ```c include include include include include void ModFilesName(const char *pcszPath) { char szPathFile = {0}; DIR *dir_p; struct dirent *direntp; struct stat entryInfo; // 打开目录 if ((dir_p = opendir(pcszPath)) == NULL) { perror("无法打开目录"); return; } // 遍历目录 while ((direntp = readdir(dir_p)) != NULL) { // 构造完整路径 snprintf(szPathFile, sizeof(szPathFile), "%s/%s", pcszPath, direntp->d_name); // 获取文件信息 if (lstat(szPathFile, &entryInfo) == 0) { // 判断是否是目录 if (S_ISDIR(entryInfo.st_mode)) { continue; // 忽略目录 } // 重命名文件 char new_name; snprintf(new_name, sizeof(new_name), "%s_new", direntp->d_name); if (rename(szPathFile, new_name) == 0) { printf("成功将 %s 重命名为 %s\n", szPathFile, new_name); } else { perror("重命名失败"); } } } // 关闭目录 closedir(dir_p); } int main() { const char *path = "./"; // 示例路径 ModFilesName(path); return 0; } ``` 注意事项 重命名文件或目录时,调用进程必须有写权限。 如果`oldname`和`newname`指定了不同的路径,且系统支持,则文件将移至新位置。 如果`newname`指定的文件已存在,则会被自动覆盖。 如果`oldname`和`newname`都为目录,则重命名目录。如果`newname`指定的目录存在且为空目录,则先将`newname`删除。 通过以上方法,你可以在C语言中实现文件的批量重命名。权限问题:
路径问题:
目标存在:
目录重命名: