function Tar::listContents
Lists all files in the archive.
Return value
array An array of file names relative to the root of the archive.
Overrides ArchiverInterface::listContents
File
- 
              core/
lib/ Drupal/ Core/ Archiver/ Tar.php, line 76  
Class
- Tar
 - Defines an archiver implementation for .tar files.
 
Namespace
Drupal\Core\ArchiverCode
public function listContents() {
  $files = [];
  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.