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