Tags
- emplace_back
- Front-end developer
- Interaction developer
- postman html parse
- postman pre-request
- 다빈치 리졸브
- MFC
- solidity
- LSL_Script
- postman collection variables
- 프런트엔드
- oracle
- Android
- C++
- postman collection
- postman csv
- postman
- 우수한 프런트 개발자
- Android/iOS Developer
- postman automations
- Unity
- Java
- postman tests
- c#
- postman excel
- UI/UX Engineer
- Intellij
- 좋은 개발자
- postman session
- web developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Archives
- Today
- Total
david's daily developer note
MFC 파일 존재 여부 확인 본문
728x90
BOOL MPM::IsFileExist( CString path )
{
WIN32_FIND_DATAW FindData;
HANDLE file = FindFirstFileW(path , &FindData);
if(file == INVALID_HANDLE_VALUE)
{
FindClose(file);
return FALSE;
}
FindClose(file);
return TRUE;
}
728x90
'[Develop] Native > Native' 카테고리의 다른 글
GetAsyncKeyState (0) | 2012.02.28 |
---|---|
윈도우 최소, 최대 크기 제한 (0) | 2012.02.27 |
CAtlMap Examples (0) | 2012.02.20 |
CCmdUI 클래스 (0) | 2012.02.20 |
PopupMenu (0) | 2012.02.11 |