TwistPHP Documentation

removeDirectory

File path: dist/twist/Core/Utilities/FTP.utility.php
Namespace: Twist\Core\Utilities
Extends: Base

removeDirectoryRemove a directory on the remote FTP server

Parameters

Name Type Description
$strDirectorystringn/a
[$blRecursive = false]booleann/a

Return Values

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

Example

<?php
//Set the variables for the example
$strDirectory 'foo';
$blRecursive false;

//Call the function removeDirectory with the example vars
Twist::FTP() -> removeDirectory($strDirectory$blRecursive);