isDir() public static method

public static isDir ( $path )
Esempio n. 1
0
 public function createDir($destination)
 {
     if (Filesystem::isDir($destination)) {
         $this->log('exists', $destination);
     } else {
         Filesystem::createDir($destination, 0777);
         $this->log('created', $destination);
     }
 }