获取EXE所在目录

方案一

获取当前目录

	char sPath[512] = {0};
	getcwd(sPath, 512);

方案二

	char szFilePath[MAX_PATH + 1] = { 0 };
	GetModuleFileNameA(NULL, szFilePath, MAX_PATH);
	/*
	strrchr:函数功能:查找一个字符c在另一个字符串str中末次出现的位置(也就是从str的右侧开始查找字符c首次出现的位置),
	并返回这个位置的地址。如果未能找到指定字符,那么函数将返回NULL。
	使用这个地址返回从最后一个字符c到str末尾的字符串。                                                                  
	*/
	(strrchr(szFilePath, '\\'))[0] = 0; // 删除文件名,只获得路径字串//
	string path = szFilePath;

方案三

用Qt获取exe所在目录

QString sPath = QCoreApplication::applicationDirPath();

或者

QString sPath = QApplication::applicationDirPath();

你可能感兴趣的:(c++,qt)