728x90
반응형
// 로그를 생성할 경로 저장 변수 선언
char wsPath[MAX_PATH] = { 0 };
CString sExePath, sDicPath;
// 현재 프로세스의 실행 파일 경로 검색
memset(wsPath, 0, sizeof(wsPath) / sizeof(WCHAR));
::GetModuleFileName(NULL, wsPath, MAX_PATH);
sExePath.Format(_T("%s"), wsPath);
// 실행 파일 이름 제거(경로 취득)
int nPos;
nPos = sExePath.ReverseFind('\\');
sDicPath.Format(_T("%s"), sExePath.Left(nPos));
728x90
반응형
'Programming > C++, MFC' 카테고리의 다른 글
C++, MFC。텍스트 파일로 로그 생성(ofstream) (0) | 2024.04.11 |
---|---|
C++, MFC。소요 시간 측정(time()) (0) | 2024.03.29 |
C++, MFC。HRESULT 완료 상태 메시지 출력 (0) | 2024.03.25 |
C++, MFC。다이얼로그 영역 외 마우스 이벤트 추적(SetCapture, GetCapture, ReleaseCapture) (0) | 2023.06.27 |
C++, MFC。다이얼로그(Dialog) 투명화 (0) | 2023.06.26 |