Convert the following directory structure (Dir Structure 01) into 
folder structure (Folder Structure 01) and 
file structure (File Structure 01) separately like the following:

Dir Structure 01:
getrizwan-chatbot/
│
├── assets/
│   ├── css/
│   │   └── chatbot-style.css
│   ├── js/
│   │   └── chatbot-scripts.js
│   └── images/
│       └── chatbot-avatar.png
│
├── includes/
│   ├── admin/
│   │   └── chatbot-settings.php
│   ├── frontend/
│   │   └── chatbot-frontend.php
│   ├── api/
│   │   └── chatbot-api-handler.php
│   └── helpers/
│       └── chatbot-functions.php
│
├── languages/
│   └── getrizwan-chatbot-en_US.mo
│
├── templates/
│   └── chatbot-template.php
│
├── getrizwan-chatbot.php
│
├── readme.txt
│
└── uninstall.php


Folder Structure 01:
assets/css
assets/js
assets/images
assets/fonts
config
controllers
models
views/auth
views/routine
views/user
views/admin

and File Structure 01:
config/database.php
controllers/AuthController.php
controllers/RoutineController.php
controllers/UserController.php
controllers/AdminController.php
models/User.php
models/Routine.php
models/Admin.php
views/auth/login.php
views/auth/register.php
views/auth/forgot-password.php
views/routine/create-routine.php
views/routine/edit-routine.php
views/routine/view-routine.php
views/routine/export-pdf.php
views/user/dashboard.php
views/user/profile.php
views/admin/dashboard.php
views/admin/manage-users.php
views/admin/manage-content.php
views/admin/analytics.php
routes.php
index.php
.htaccess
README.md