Skip to content

PavankalyanPayyavula/File-Explorer-React

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React File Explorer

A simple and intuitive file explorer application built with React. This project allows users to navigate through directories, view files, and perform basic file operations.

Table of Contents

Features

  • Browse directories and files
  • Create, rename, and delete files and folders
  • View file details
  • Responsive design for various screen sizes

Installation

To get started with this project, clone the repository and install the dependencies:

git clone https://github.com/PavankalyanPayyavula/File-Explorer-React.git
cd File-Explorer-React
npm install

react-file-explorer/
├── public/
│   ├── index.html
│   └── ...
├── src/
│   ├── components/
│   │   ├── File.js
│   │   ├── FileExplorer.js
│   │   ├── FileTree.js
│   │   └── ...
│   ├── context/
│   │   ├── FileContext.js
│   │   └── ...
│   ├── hooks/
│   │   ├── useFileOperations.js
│   │   └── ...
│   ├── styles/
│   │   ├── App.css
│   │   └── ...
│   ├── App.js
│   ├── index.js
│   └── ...
├── .gitignore
├── package.json
├── README.md
└── ...