반응형 Windows1 [MFC] 현재 실행파일 경로 불러오기 TCHAR path[_MAX_PATH]; GetModuleFileName(NULL, path, sizeof path); CString strPath1 = path; int i = strPath1.ReverseFind('\\');//실행 파일 이름을 지우기 위해서 왼쪽에 있는 '/'를 찾는다. strPath1 = strPath1.Left(i); AfxMessageBox(strPath1); 2022. 4. 11. 이전 1 다음 반응형