add OC_Archive::addRecursive
This commit is contained in:
parent
d54390b1a0
commit
5962469892
|
@ -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'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue