如何在C语言编程里面修改源文件名字
C修改文件名:使用rename函数。
rename函数:功能描述:?改变文件的名称或者位置,如果目标已存在,将被自动覆盖。用法:?#include?<stdio.h>int?rename(const?char?*oldpath,?const?char?*newpath);参数:
oldpath:旧文件名。?newpath:新文件名或者新位置。?
具体可以分以下2种情况:
1、修改单个文件
直接使用rename即可。
2、批量修改文件(如:按一定规则修改某目录下所有文件)
需要使用opendir遍历目录,然后修改该目录下文件。下面提供一个简单的例子。
void?ModFilesName(const?char?*pcszPath)
{
char?szPathFile[1024]?=?{0};//路径+文件名
DIR?*dir_p;
struct?dirent?*direntp;
struct?stat?entryInfo;
//文件目录不存在,则创建
if(stat(pcszPath,?&entryInfo)?<?0)
{
printf("Auto?create?folder:%s\n",?pcszPath);
mkdir(pcszPath,?0755);
}
if?((dir_p?=?opendir?(pcszPath))?==?NULL)
{
return;
}
while?((direntp?=?readdir?(dir_p))?!=?NULL)
{
//组合完整路径
sprintf(szPathFile,?"%s/%s",?pcszPath,?direntp->d_name);
//判断文件是否是目录
if(lstat(szPathFile,?&entryInfo)?==?0)
{
if(S_ISDIR(entryInfo.st_mode))
{
continue;//忽略目录
}
rename(szPathFile,?你要修改成的文件名);
}
}?//?while?(?...
closedir?(dir_p);
}
推荐一片文章:/uid-7525568-id-251530.html
希望能帮助到你,你的好评是我前进的动力!谢谢!