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.
- Browse directories and files
- Create, rename, and delete files and folders
- View file details
- Responsive design for various screen sizes
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
└── ...