function ArchiverTar::listContents

Lists all files in the archive.

Return value

An array of file names relative to the root of the archive.

Overrides ArchiverInterface::listContents

File

modules/system/system.archiver.inc, line 50

Class

ArchiverTar
Archiver for .tar files.

Code

public function listContents() {
  $files = array();
  foreach ($this->tar
    ->listContent() as $file_data) {
    $files[] = $file_data['filename'];
  }
  return $files;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.