PHP code example of helionogueir / foldercreator

1. Go to this page and download the library: Download helionogueir/foldercreator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

helionogueir / foldercreator example snippets


use helionogueir\foldercreator\folder\Create;
$pathname = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "helionogueir_foldercreator_folder_create";
(new Create())->mkdir($pathname);

use helionogueir\foldercreator\folder\Delete;
$pathname = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "helionogueir_foldercreator_folder_create";
(new Delete())->rm($pathname);

use helionogueir\foldercreator\tool\AccessMode;
use helionogueir\foldercreator\folder\Create;
$pathname = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "helionogueir_foldercreator_folder_create";
(new Create())->mkdir($pathname, AccessMode::MOD_0777);

use helionogueir\foldercreator\tool\Path;
$pathname = "pathnam/to\\file/or\\directory";
echo Path::replaceOSSeparator($pathname);