コード例 #1
0
ファイル: file.php プロジェクト: DarneoStudio/bitrix
 public static function isFileExists($path)
 {
     $f = new self($path);
     return $f->isExists();
 }
コード例 #2
0
ファイル: directory.php プロジェクト: spas-viktor/books
 public static function isDirectoryExists($path)
 {
     $f = new self($path);
     return $f->isExists();
 }