Tags
- 우수한 프런트 개발자
- solidity
- oracle
- Front-end developer
- C++
- postman collection
- MFC
- postman session
- postman excel
- LSL_Script
- 다빈치 리졸브
- postman tests
- Unity
- Java
- web developer
- postman csv
- c#
- 좋은 개발자
- Intellij
- postman
- Android
- Android/iOS Developer
- postman pre-request
- postman html parse
- Interaction developer
- 프런트엔드
- UI/UX Engineer
- emplace_back
- postman collection variables
- postman automations
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
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 |