Open In App

Explain CodeIgniter folder structure

CodeIgniter is an Application Development Framework to build websites using PHP. It is used to minimize the code while developing an application and developed as much fast. The folder structure is an important part of CodeIgniter. It is important to understand the file structure in CodeIgniter to develop successful applications.

When you open the directory structure of CodeIgniter there will main three folders which are given below:



So, now we will look into all the parts.

Folder Structure:



Application: The application folder is where all the code of the application we are developing is stored. It consists serval other folders.

System: All the files related to coding, libraries, and other files will be stored here which will help you make the coding easy.

This folder also contains various folders which are explained below:

User_guide: It works as an offline CodeIgniter guide which helps you to learn the basic functions of various libraries of CodeIgniter. You should go through this to learn about CodeIgniter. It consists of an index.php file that contains important things to set environment and error level. You should not touch this file if you do not have knowledge.

Advantages:

Disadvantages:

Article Tags :