Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8198787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:01:38+00:00 2026-06-07T06:01:38+00:00

I have a diirectory containing textfiles,I normaly use DirectoryIterator class avaialble in php to

  • 0

I have a diirectory containing textfiles,I normaly use DirectoryIterator class avaialble in php to iterate the directory and get filenames .I’ve got trouble trying it with CI. I’m completely new to CI ,so please bear with me :).

I’ve got something like this in my default controller named myblog (i wrote the function just after the index function).

<?php

    public function diriterate()
    {
        $this->load->helper('directory');

        $mapi=directory_map('./myfolder/');

        $this->load->view('index.php',$mapi);       
    } 

?>

and i’m trying something like this in my view

<?php
    foreach($mapi as $key)
    {   
        echo $key;  
    }
?>

Am i doing it plain wrong here ? .

(1) If my understanding is correct i can run it like mysitename/class/function (in my case localhost/myblog/diriterate) (2) My directory is inside the rootfolder (rootfolder/myfolder) so there is no need of baseurl or something ?.

Should i do this simply in the view using DirectoryIterator class or just create another controller for iteration,I’m really confused , any help is welcome .Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T06:01:39+00:00Added an answer on June 7, 2026 at 6:01 am

    Follow the MVC convention.

    Model models/folder_model.php

    class Folder_model extends CI_Model {
        function iterate() {
            $this->load->helper('directory');
            $map = directory_map('./myfolder', 1);
            return $map;
        }
    }
    

    For the directory map, it’ll look in the root directory of your application, meaning path that includes index.php. Note that 1 will cause it to be non-recursive and only on that top-level path.

    Controller controllers/folder.php

    class Folder extends CI_Controller {
        function index() {
            $this->load->model('folder_model');
            $map = $this->folder_model->iterate();
    
            $this->load->view('folder', array('map' => $map));
        }
    }
    

    View views/folder.php

    <? foreach ($map as $item): ?>
        <?= $item ?>
    <? endforeach; ?>
    

    This then would be viewable at http://localhost/index.php/folder.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a directory containing multiple subdirectories. I want to list only those subdirectories
I have a directory containing a number of static file (*.png, *.css, etc). I
I have a directory containing over 100 html files. I need to extract only
I have a directory containing several files, some of which have spaces in their
I have a highly structured hierarchical directory containing multiple files that need to be
I have a script that searches for a directory containing a specific file, starting
Am I allowed to have a directory named 'import' containing Python code? Or will
I have a directory of text-based, compressed log files, each containing many records. In
I have a a directory with zip archives containing .jpg, .png, .gif images. I
I have a project directory which has an .acignore file containing: out/* The project

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.