예제 #1
0
파일: fs.php 프로젝트: noccy80/lepton-ng
 public function __construct($path)
 {
     parent::__construct($path);
     if (!$this->isDirectory()) {
         throw new FsException('"' . $path . '" is not a directory', FsException::ERR_NOT_A_DIR);
     }
 }