重命名編程
發布時間: 2024-03-30 12:40:51
❶ 如何在C語言編程裡面修改源文件名字
C修改文件名:使用rename函數。
rename函數:功能描述:改變文件的名稱或者位置,如果目標已存在,將被自動覆蓋。用法:#include<stdio.h>intrename(constchar*oldpath,constchar*newpath);參數:
oldpath:舊文件名。newpath:新文件名或者新位置。
具體可以分以下2種情況:
1、修改單個文件
直接使用rename即可。
2、批量修改文件(如:按一定規則修改某目錄下所有文件)
需要使用opendir遍歷目錄,然後修改該目錄下文件。下面提供一個簡單的例子。
voidModFilesName(constchar*pcszPath)
{
charszPathFile[1024]={0};//路徑+文件名
DIR*dir_p;
structdirent*direntp;
structstatentryInfo;
//文件目錄不存在,則創建
if(stat(pcszPath,&entryInfo)<0)
{
printf("Autocreatefolder:%s ",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);
}
推薦一片文章:http://blog.chinaunix.net/uid-7525568-id-251530.html
希望能幫助到你,你的好評是我前進的動力!謝謝!
❷ 請問一下,C#怎樣為FTP文件夾重命名呢 - C#編程 -
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(serverUri);request.Method = WebRequestMethods.Ftp.Rename;//設置方法為重命名FtpWebResponse response = (FtpWebResponse) request.GetResponse();
熱點內容