폴더 생성 썸네일형 리스트형 서브폴더 생성하기 typedef std::basic_string tstring; bool CreateSubDirectory(LPCTSTR folder) { ATLASSERT(folder); if(!folder) { SetLastError(ERROR_INVALID_PARAMETER); return false; } tstring strFoler(folder); if(strFoler.empty() || strFoler.find(_T("\\")) == tstring::npos) { return false; } size_t pos(0); tstring temp; if(strFoler[strFoler.size()-1] != _T('\\')) { strFoler.append(_T("\\")); } bool ret(true); whil.. 더보기 이전 1 다음