Implement extraction of tarball archives

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40842 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-08-24 05:30:28 +00:00
parent 5984be1856
commit e6da10b30b
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ class TarballArchive extends Archive {
return $listing;
}
function extractTo($destination, $entires = null) {
if(!isset($entries)) {
$command = "tar -xv{$this->compressionModifiers}f ../$this->filename --directory $destination";
$output = `$command`;
}
}
}