PHP Doku:: Test whether an entry represents a directory - rarentry.isdirectory.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungRar ArchivingThe RarEntry classRarEntry::isDirectory

Ein Service von Reinhard Neidl - Webprogrammierung.

The RarEntry class

<<RarEntry::getVersion

RarEntry::isEncrypted>>

RarEntry::isDirectory

(PECL rar >= 2.0.0)

RarEntry::isDirectoryTest whether an entry represents a directory

Beschreibung

public bool RarEntry::isDirectory ( void )

Tests whether the current entry is a directory.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

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

Anmerkungen

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)));
?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)