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