2 Star 7 Fork 2

sdonc/MFC_Easy_Model

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
EasyPath.cpp 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
sdonc 提交于 2018-03-29 15:51 . 1.0版本(初版)
#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);
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sdonc/MFC_Easy_Model.git
git@gitee.com:sdonc/MFC_Easy_Model.git
sdonc
MFC_Easy_Model
MFC_Easy_Model
master

搜索帮助