PHP code example of filesite / dirscanner

1. Go to this page and download the library: Download filesite/dirscanner 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/ */

    

filesite / dirscanner example snippets




use Filesite\DirScanner;

$scanner = new DirScanner();

$rootDir = __DIR__ . '/../src/';

//set the scan dir src/
$scanner->setRootDir($rootDir);
$maxScanDeep = 1;   //set max scan deepth

//Scan the dir and get the dir tree
$dirTree = $scanner->scan($rootDir, $maxScanDeep);
print_r($dirTree);

//get the scan results in array
$scanResults = $scanner->getScanResults();
print_r($scanResults);