Manish
Manish

Reputation: 96

How to read directory in codeIgniter outside the application folder?

$dir = 'application/';
$map = directory_map($dir); 

I am able to read directory inside the application folder with directory_map

but, not able to read system and other folder outside the application folder.....

$dir = '../application/';
$map = directory_map($dir);

Upvotes: 0

Views: 1306

Answers (1)

maicher
maicher

Reputation: 2745

FCPATH is a constant that represent a path to CodeIgniter's root directory.

To access system directory, use:

    $dir = FCPATH . 'system';
    $map = directory_map($dir);

Upvotes: 1

Related Questions