2011-07-28 10:30:50| 分类: Visual C++ and O | 标签: |举报 |字号大中小 订阅
/////////////////////////////////////////////////////////////////////////
// // 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://www.cnblogs.com/thbCode/p/3756984.html