Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.28 KB

File metadata and controls

46 lines (39 loc) · 1.28 KB

File Organizer (Express.JS)

A Express app that organizes all the files in the directory.

What will this app do?

All the files in folder directory will be sorted/organized properly.

For example:
You have these files:
folder/name.jpg
folder/name.png
folder/this.pdf
folder/harry.zip
folder/Rohan.zip
folder/cat.jpg
folder/harry.pdf
They will become:
folder/jpg/name.jpg, folder/jpg/cat.jpg
folder/png/name.png
folder/pdf/this.pdf, folder/pdf/harry. pdf
folder/zip/harry.zip, folder/zip/Rohan. zip

Prerequisites:

  • Node.js latest version installed
  • Git Installed
  • VS Code or any code editor/IDE you use

Getting Started

  • Clone
git clone https://github.com/arnavnagpurkar/File-Organizer-Express.git
  • Open the app in VS Code or any editor/IDE you use.
  • Initialize the node app by installing the required packages
npm i
  • Run main.js
  • Your files are now organized !!

License

This project is licensed under MIT License
See the LICENSE file for more details.

Acknowledgements

Made by @arnavnagpurkar in 2024.