代码拉取完成,页面将自动刷新
#include "stdafx.h"
#include "EasyPath.h"
EasyPath::EasyPath()
{
}
EasyPath::~EasyPath()
{
}
CString EasyPath::GetProgramDir()
{
TCHAR _szPath[MAX_PATH + 1] = { 0 };
GetModuleFileName(NULL, _szPath, MAX_PATH);
(_tcsrchr(_szPath, _T('\\')))[1] = 0;//删除文件名,只获得路径 字串
return CString(_szPath);
}
CString EasyPath::GetProgramName(bool suffix)
{
TCHAR _szPath[MAX_PATH + 1] = { 0 };
GetModuleFileName(NULL, _szPath, MAX_PATH);
CString name(_szPath);
if (suffix)
{
return name.Right(name.GetLength() - name.ReverseFind('\\') - 1);
}
else
{
int p1,p2;
p1 = name.ReverseFind('\\');
p2 = name.Find('.', p1+1);
if (p2==-1)//该文件无后缀
{
return name.Right(name.GetLength() - p1 - 1);
}
else
{
return name.Mid(p1+1, p2-p1-1);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。