// 실행파일 경로
char programpath[_MAX_PATH];
GetModuleFileName( NULL, programpath, _MAX_PATH);
// 현재 폴더 경로
GetCurrentDirectory( _MAX_PATH, programpath);
실행파일 경로는 실행파일까지 들어간 Full Path임.
// 실행파일 경로
char programpath[_MAX_PATH];
GetModuleFileName( NULL, programpath, _MAX_PATH);
// 현재 폴더 경로
GetCurrentDirectory( _MAX_PATH, programpath);
실행파일 경로는 실행파일까지 들어간 Full Path임.