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 8861641
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:32:11+00:00 2026-06-14T15:32:11+00:00

I am using this function in codeigniter to try to check and make directories

  • 0

I am using this function in codeigniter to try to check and make directories and sub directories only if they do not exist. Only the k_uploads is made but an error occurs in making the sub directory in the main directory ‘k_upoloads’. The structure should be as

    k_uploads (main directory)
       -2012 (subdirectory in main directory - made per year in k_uploads)
          -Jan(subdirectory in 2012 - made every month in 2012)
            -subdirx (subdirectory in Jan - holds the excel files for that month)
          xxyyy.xlsx (month files in subdirx)

Each year and month directories and sub directories should be created. I cant figure where the problem is, it works with plain php but not in codeigniter.

public function makeDir(){
            $labref = $this->uri->segment(3);
            $dirName='k_uploads';
             echo  $store_dir= date('Y').'/'.date('M').'/'.$subdirx;          

             if(!is_dir($dirName))
             $k= mkdir($dirName, 0777);
            if($k){
                echo $dirName. 'dir has been created';
            }else{
                echo 'An error occured';
            }
            if(is_dir($dirName))
                $w=  mkdir($store_dir,0777);
            if($w){
                echo $sore_dir. 'subdirs have been created';
            }else{
               echo 'An error occured';  
            }
        }
  • 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-14T15:32:12+00:00Added an answer on June 14, 2026 at 3:32 pm

    mkdir has a recursive flag which can be set. This will create the full path. See PHP: mkdir

    so you should use mkdir($store_dir,0777, true)

    The function could look something like the following:

    public function makeDir(){
      $subdirx = $this->uri->segment(3);
      $store_dir= APPPATH . 'k_uploads/' . date('Y').'/'.date('M').'/'.$subdirx;          
    
      if(!is_dir($store_dir)) {
        return mkdir($dirName, 0777, true);
      } else {
        return true;
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using this function try to make a request to the server. I
I have this function on my controller (Im using CodeIgniter) that reads the database,
Hai I am using codeigniter...I my function phpcalview() ... This is my function function
I am using this function but it is not working. I'm using StoryBoard and
I'm using this code in Codeigniter to generate XML: public function get_cuisine() { $this->load->dbutil();
I am using this function (that I found on this forum) to calculate the
I am using this function to list items from table helps depending on parameters:
I am using this function to redirect to a random post. I am trying
Hi am using this function that works by a single ID ( 52000121 )
I am using this function to get the featured images: <a href=# rel=prettyPhoto> <?php

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.