How To

How to Programmatically Delete Directory in Magento 2?

Hello Magento Friends,

Today I am going to explain How to Programmatically Delete Directory in Magento 2?

Magento 2 contains various directories and subdirectories which have files in them. The directory structure of Magento 2 helps developers to develop custom extensions, themes or add any custom code.

If you want to delete any unnecessary directory in Magento 2 you can do it programmatically and avoid deleting it manually, I have explained it below

Steps to Programmatically Delete Directory in Magento 2:

Step 1: Go to the below path

app\code\Vendor\Extension\etc\di.xml

And add the below code

<?php
namespace Vendor\Extension\Controller\Adminhtml\Deleteimages;

use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Filesystem;

class Index extends \Magento\Backend\App\Action
{
    protected $fileSystem;
    protected $resultPageFactory;
    protected $_publicActions = ['index'];

    public function __construct(
        \Magento\Backend\App\Action\Context $context,
        \Magento\Framework\View\Result\PageFactory $resultPageFactory,
        Filesystem $fileSystem)
    {
        parent::__construct($context);
        $this->resultPageFactory = $resultPageFactory;
        $this->directory = $fileSystem->getDirectoryWrite(DirectoryList::MEDIA);
    }

    public function execute()
    {
        $resultPage = $this->resultPageFactory->create();

            $dir = '/test/';
            $deleteDirectory = $this->directory->delete($dir);
            $this->messageManager->addSuccess(__('Custom Images Deleted Successfuly!'));

        return $resultPage;
    }
}

So this blog will help to remove the folder test from the pub/media folder.

Conclusion:

This way simply you can Programmatically Delete Directory in Magento 2. If you have any doubts, let me know via the comment section below. Share the article with your friends and stay in the know for further tutorials.

Happy Coding!

Click to rate this post!
[Total: 6 Average: 3.7]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

13 hours ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

3 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

3 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

4 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

4 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

7 days ago