filebuf.Format(_T("%s\\%s"), CString(AppPath), _T("APCDATA"));
// UNICODE 뒷부분이 안보인다.
BOOL ret = PathIsDirectory( filebuf );
char str[1024]; sprintf(str, "%s\\%s", AppPath, "APCDATA" );
// UICODE에서 Format에 char 있으면 안된다. 2020-04-08 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
if( GetFileAttributes( filebuf ) == 0xffffffff ){
if ( ! ::CreateDirectory( filebuf, NULL ) )
::MessageBox((HWND)NULL,_T("./APCDATA 폴더 생성 실패."),NULL,MB_OK|MB_TOPMOST);
}
댓글 없음:
댓글 쓰기