TwistPHP Documentation

deleteName

File path: dist/twist/Core/Models/Archive/PclZip.model.php
Namespace: Twist\Core\Models\Archive
Extends:

deleteNameDelete a file or folder form the archive by its path using the PclZip Third party package.

Parameters

Name Type Description
$strDirectoryPathstringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strDirectoryPath 'foo';

//Call the function deleteName with the example vars
$resPclZip = new \Twist\Core\Models\Archive\PclZip();
$resPclZip -> deleteName($strDirectoryPath);