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