• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • RarEntry::isDirectory()

    (PECL rar >= 2.0.0)

    Test whether an entry represents a directory

    说明

    publicRarEntry::isDirectory(void): bool

    Tests whether the current entry is a directory.

    参数

    此函数没有参数。

    返回值

    Returns TRUE if this entry is a directory and FALSE otherwise.

    注释

    This function is only available starting with version 2.0.0, but one can also test whether an entry is a directory by checking the entry attributes, like this(only works for files compressed in RAR for Windows or 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)));
    ?>