AppserverIo\Appserver\Core\AbstractExtractor::copyDir PHP Method

copyDir() public method

Copies a directory recursively.
See also: AppserverIo\Appserver\Core\Api\AbstractService::copyDir()
public copyDir ( string $src, string $dst ) : void
$src string The source directory to copy
$dst string The target directory
return void
    public function copyDir($src, $dst)
    {
        $this->getService()->copyDir($src, $dst);
    }