예제 #1
0
파일: Dir.php 프로젝트: jacksleight/coast
 public function __construct($path, $create = false)
 {
     parent::__construct($path);
     if ($create && !$this->exists()) {
         $this->create($create);
     }
 }