아래 API를 사용하면 된다.
GetFileAttributes( LPCWSTR lpFileName )
해당 경로에 폴더가 없을 경우 -1 리턴.
Ex.
if( GetFileAttributes( 경로 ) == -1)
CreateDirectory( 경로, NULL );
'C / C++ / MFC' 카테고리의 다른 글
[MFC]CListCtrl > Selection change (0) | 2019.01.24 |
---|---|
SendMessage C++ to C# using WM_COPYDATA (0) | 2015.06.16 |
C++ 64비트 컨버팅 이슈 (0) | 2013.03.04 |
CString to char * , char * to CString (0) | 2012.04.06 |