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