Skip to content

Exclude Files & Folders

Prasath Mani edited this page Jan 1, 2020 · 2 revisions

you can specify files or directories that you'd like to exclude from the listing using configuration, in case same name file/folder in multiple place also excluded.

// Files and folders to excluded from listing
// e.g. array('myfile.html', 'personal-folder', '*.php', ...)
$exclude_items = array(
    'my-folder',
    'secret-files',
    'tinyfilemanger.php',
    '*.php',
    '*.js'
);
Clone this wiki locally