파일에 VC++가 있는지 판단

888 단어 vc++
//         
BOOL pathIsFile(TCHAR* lpPath)
{
    //            
  // Code by Lthis
if (PathIsDirectory(lpPath)) return FALSE; if (PathFileExists(lpPath)) return TRUE; return FALSE; }

좋은 웹페이지 즐겨찾기