mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
5984be1856
commit
e6da10b30b
@ -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`;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user