Esempio n. 1
0
 public static function isFileExists($path)
 {
     $f = new self($path);
     return $f->isExists();
 }
Esempio n. 2
0
 public static function isDirectoryExists($path)
 {
     $f = new self($path);
     return $f->isExists();
 }