博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言根据后缀判断文件类型
阅读量:5015 次
发布时间:2019-06-12

本文共 1223 字,大约阅读时间需要 4 分钟。

//判断文件类型为pdf或者word类型 #include
#include
int File(char *Filename);int main(int argc, char *argv[]){ char Filename[40]; memset(Filename,0x00,sizeof(Filename)); strcpy(Filename,argv[1]); printf("%s",Filename); // NULL => not file type printf("12------%d",File(Filename)); if(File(Filename) == 1 ){ printf("The file is type of word or pdf"); } else{ printf("The file is not type of word or pdf"); }}int File(char *Filename){ int flag = 0; // 0->NOT 1->yes char str[6]; memset(str,0x00,sizeof(str)); //.doc .docx .pdf if( strncmp(Filename,".doc",4) == 0 || strncmp(Filename,".docx",5) == 0 || strncmp(Filename,".pdf",4) == 0) { printf("line of 31————%s",Filename); flag = 0; return flag; } strncpy(str,Filename+(strlen(Filename))-4,4); printf("line of 33————%s",str); if( strncmp(str,".doc",4) == 0 ||strncmp(str,".pdf",4)== 0 ) { flag = 1; } memset(str,0x00,sizeof(str)); printf("line of 40————%s",str); strncpy(str,Filename+(strlen(Filename))-5,5); if( strncmp(str,".docx",5) == 0 ) { flag = 1; } return flag;}

  

转载于:https://www.cnblogs.com/love-life-insist/p/11349041.html

你可能感兴趣的文章
如何提高编程水平
查看>>
Jquery Uploadify3.21.与2.1版本 使用中存在的问题--记录三
查看>>
Linux查看进程的内存占用情况 分类: ubuntu ...
查看>>
[BZOJ 2818]Gcd
查看>>
FORM值传递与地址传递
查看>>
(译)yaml快速教程
查看>>
C:大数相加
查看>>
160. Intersection of Two Linked Lists
查看>>
人生苦短,我用python-- Day11
查看>>
JAVA Bean
查看>>
ehcache memcache redis 三大缓存男高音_转
查看>>
curd_3
查看>>
百度地图API示例之设置地图显示范围
查看>>
Java构造方法、重载及垃圾回收
查看>>
.Net Core AES加密解密
查看>>
Spring Quartz实现任务调度
查看>>
python | 桶排序、冒泡排序、选择排序、去重
查看>>
两个Html页面之间值得传递
查看>>
EasyUI datagrid 的多条件查询
查看>>
Mac升级bash到最新版本
查看>>