1234
if (c:\\newguy exist (true)) { //code here }
CreateDirectory("C:\\newguy")
PathFileExists(_T("c:\\newguy"));
if (PathFileExists(_T("c:\\newguy"))) { code here }
12345678910
if (GetFileAttributes(_T("c:\\newguy")) & FILE_ATTRIBUTE_DIRECTORY) { // directory exists } else { // handle error }