Reputation: 96
$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
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