public function Archive_Tar::setIgnoreList

public Archive_Tar::setIgnoreList($list)

This method sets the regular expression for ignoring all files and directories matching the filenames in the array list at import, for example: $arch->setIgnoreList(array('CVS', '.svn', 'bin/tool'));

@access public

Parameters

array $list a list of file or directory names to ignore:

File

modules/system/system.tar.inc, line 774

Class

Archive_Tar

Code

public function setIgnoreList($list) 
 {
  $regexp = str_replace(array('#', '.', '^', '$'), array('\#', '\.', '\^', '\$'), $list);
  $regexp = '#/' . join('$|/', $list) . '#';
  $this->setIgnoreRegexp($regexp);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.tar.inc/function/Archive_Tar::setIgnoreList/7.x