프로그래밍 언어 공부/C랑 C++

Windows에서 반복 폴더 생성(Iterative Folder Making) 쉽게 하기

고민고민하지마~* 2014. 8. 18. 22:07

mkdir 쉘 커맨드 사용.

ex)

bool MakePathIter(string path)

{

#ifdef _WIN32

system((string("mkdir ") + path).c_str());

#endif

return true;

}