#include <iostream> #include<stdio.h> #include <direct.h> #include <windows.h> #include<process.h> #include <atlstr.h>
char buff[MAX_PATH];//用于存放获取的路径信息。 GetModuleFileName(NULL, buff, MAX_PATH); CString str2 = buff; int pos = str2.ReverseFind('\\');//查找倒数最后一个“\\”符号 str2 = str2.Left(pos + 1); //删除最后一个\后面的字符 cout << str2 << endl;
标签:exe,str2,pos,c++,window,PATH,include,buff From: https://www.cnblogs.com/miwaiwai/p/17332688.html