码迷,mamicode.com
首页 > 其他好文 > 详细

VC获取文件后缀名

时间:2014-05-30 05:21:56      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   tar   http   

VC获取文件后缀名  

2011-07-28 10:30:50|  分类: Visual C++ and O |  标签: |举报 |字号 订阅

 
 
1。 CString GetSuffix(CString strFileName) {
        return strFileName.Right(strFileName.GetLength()-strFileName.ReverseFind(‘.‘)-1);
}
2。PathFindExtension
3。忽略大小写方法 CString::MakeUpper();全部转化为大写;
CString::MakeLower();全部转化为小写;
 
 
取得文件的类型 PathFindExtension()

///////////////////////////////////////////////////////////////////////// // //    PathFindExtension();函数的使用 //    作用:取得文件的后缀名 //   注意:头文件 shlwapi.h   包含库:shlwapi.lib //   
// /////////////////////////////////////////////////////////////////////////

#include <tchar.h> #include <iostream> #include <Windows.h> #include <shlwapi.h>  
using namespace std;

#pragma comment(lib, "shlwapi.lib")

int _tmain(int argc, _TCHAR* argv[]) { TCHAR szEXEPath[2048]; LPTSTR pszExtension; GetModuleFileName(NULL,szEXEPath,2048); pszExtension = PathFindExtension(szEXEPath);
return 0; }

文章转载:http://blog.163.com/liulijuan_llj/blog/static/1778432752011628103050694/

VC获取文件后缀名,布布扣,bubuko.com

VC获取文件后缀名

标签:c   style   class   blog   tar   http   

原文地址:http://www.cnblogs.com/thbCode/p/3756984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!