Skip to content
Snippets Groups Projects
Commit 59624698 authored by Robin Appelman's avatar Robin Appelman
Browse files

add OC_Archive::addRecursive

parent d54390b1
No related branches found
No related tags found
No related merge requests found
......@@ -112,4 +112,25 @@ abstract class OC_Archive{
* @return resource
*/
abstract function getStream($path,$mode);
/**
* add a folder and all it's content
* @param string $path
* @param string source
* @return bool
*/
function addRecursive($path,$source){
if($dh=opendir($source)){
$this->addFolder($path);
while($file=readdir($dh)){
if($file=='.' or $file=='..'){
continue;
}
if(is_dir($source.'/'.$file)){
$this->addRecursive($path.'/'.$file,$source.'/'.$file);
}else{
$this->addFile($path.'/'.$file,$source.'/'.$file);
}
}
}
}
}
......@@ -130,4 +130,12 @@ abstract class Test_Archive extends UnitTestCase {
$this->instance->remove('target.txt');
$this->assertFalse($this->instance->fileExists('target.txt'));
}
public function testRecursive(){
$dir=OC::$SERVERROOT.'/apps/files_archive/tests/data';
$this->instance=$this->getNew();
$this->instance->addRecursive('/dir',$dir);
$this->assertTrue($this->instance->fileExists('/dir/lorem.txt'));
$this->assertTrue($this->instance->fileExists('/dir/data.zip'));
$this->assertTrue($this->instance->fileExists('/dir/data.tar.gz'));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment