php 폴더 생성, 파일생성 file_exists(), is_dir(), mkdir()
//폴더, 파일 존재 확인 $path = "sample/path/newfolder"; if (!file_exists($path)) { mkdir($path, 0777, true); } //폴더 존재 확인 $path = "sample/path/newfolder"; if (!is_dir($path)) { mkdir($path, 0777, true); } is_dir이 약간 빠르다고함