반응형
#include "tchar.h"
#include "shlwapi.h"
#pragma comment(lib, "shlwapi.lib")
if (PathFileExists(szDllPath))
_tprintf(L"File Exist\n");
else {
_tprintf(L"File doesnt Exist\n");
return FALSE; // 함수 리턴값에 따라 -1 or FALSE
}
---------------------------------------------
#include "shlwapi.h"
#pragma comment(lib, "shlwapi.lib")
if (PathFileExists(szDllPath))
printf("File Exist\n");
else {
printf("File doesnt Exist\n");
return FALSE; // 함수 리턴값에 따라 -1 or FALSE
}
반응형
'[ ★ ]Study > Programming' 카테고리의 다른 글
GetLastError() 코드 모음 (0) | 2020.02.26 |
---|---|
멀티바이트 유니코드 TCHAR함수 (0) | 2020.02.26 |
const char * 형식의 인수가 LPCWSTR 형식의 매개 변수와 호환되지 않습니다. (0) | 2020.02.22 |
MYSQL 한글 깨짐 현상(UTF-8) 설정 (0) | 2020.02.17 |
[Error LNK2019] LNK2019 _main 외부 기호 해결법 (0) | 2020.01.07 |
댓글