RarEntry::isDirectory

(PECL rar >= 2.0.0)

RarEntry::isDirectoryこのエントリがディレクトリであるかどうかを調べる

説明

public RarEntry::isDirectory(): bool

現在のエントリがディレクトリであるかどうかを調べます。

パラメータ

この関数にはパラメータはありません。

戻り値

エントリがディレクトリである場合に true、それ以外の場合に false を返します。

注意

この関数はバージョン 2.0.0 以降でしか使えませんが、 エントリの属性をチェックすればディレクトリであるかどうかを調べることができます (RAR for Windows あるいは Unix で圧縮したファイルでしか使えません)。

<?php
//...
//Open file, get entry and store in variable $e...
//...

$isDirectory = (bool) ((($e->getHostOs() == RAR_HOST_WIN32) && ($e->getAttr() & 0x10)) ||
    ((
$e->getHostOs() == RAR_HOST_UNIX) && (($e->getAttr() & 0xf000) == 0x4000)));
?>

関連キーワード:  エントリ, ディレクトリ, RarEntry, isDirectory, パラメータ, 関数, getVersion, isEncrypted, public, 注意