TwistPHP Documentation

makeDirectory

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

makeDirectoryMake a new 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 makeDirectory with the example vars
Twist::FTP() -> makeDirectory($strDirectory$blRecursive);