用C语言如何从路径名中分离文件名
发布网友
发布时间:2022-03-01 13:15
我来回答
共5个回答
热心网友
时间:2022-03-01 14:44
声明一个足够长的名为fn的char型数组,调用库函数strrchr在含路径的全文件名中找到文件名前的'\',将其后的文件名拷贝到fn中即可。举例代码如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "string.h"
int main(void){
char fn[30],*p;
char pathname[80]="e:\\1\\2\\abc.dat";
//上句假设以某种方式获得的全文件名在pathname中,"..."中只是举例
strcpy(fn,(p=strrchr(pathname,'\\')) ? p+1 : pathname);
//上句函数第2实参这样写以防止文件在当前目录下时因p=NULL而出错
printf("%s\n",fn);//打出来看看
return 0;
}
热心网友
时间:2022-03-01 16:02
void *GetFilename(char *p)
{
int x = strlen(p);
char ch = '\\';
char *q = strrchr(p,ch) + 1;
return q;
}
int main()
{
char p[]="D:\\SoftWare\\Adobe\\Photoshop5.exe";
printf("%s\n",GetFilename(p));
return 0;
}
char p[]="D:\\SoftWare\\Adobe\\Photoshop5.exe";
中的双斜杠是赋值时用到的,如果路径名是其它方式获取到,就不需要用到双斜杠!
追问直接用strrchr函数获取 '\' 字符指针就行了?
追答是的。
热心网友
时间:2022-03-01 17:37
本来我是不想思考来百度查的,结果查出来的都不能用(-_-)....
然后就自己写了一个->
//将一个带文件名的路径分解为路径和文件名
void decomposition(const char* str,char* pname,char* fname)
{
int i;
int psize=0;//用以记录最后一个分隔符的位置(路径结束位置)
int fsize=0;//文件当前指向
/* 寻找到最后一个分隔符 */
while(str[fsize]) {
if(str[fsize]<=0x7f) { //字符
if(str[fsize]=='/'||str[fsize]=='\')
psize=fsize;
fsize++;
}else fsize+=2; //中文
}
/* 开始拷贝 */
for(i=0;i<psize;i++) pname[i]=str[i];pname[i]='\0';
for(i=psize+1,fsize=0;str[i];i++) fname[fsize++]=str[i];fname[fsize]='\0';
}
热心网友
时间:2022-03-01 19:28
你的这句话char p[]="D:\SoftWare\Adobe\Photoshop5.exe"; 里的\被编译器解析成转义字符了。
热心网友
时间:2022-03-01 21:36
char p[]="D:\SoftWare\Adobe\Photoshop5.exe";
要改成:
char p[]="D:\\SoftWare\\Adobe\\Photoshop5.exe";