node-file-structure
v0.5.2
Published
The best way to bring structure to your files and folders
Maintainers
Readme
Node File Structure
About
Node File Structure is a Node.js module that allows you to easily sort all your Files in a directory.
Installation
Node.js 16.6.0 or newer is required.
npm i node-file-structureExample usage
Install all required dependencies:
npm i node-file-structure
How to use the Package:
Template
let structure = require('node-file-structure');
let Folder = ['FOLDER1', 'FOLDER2']; // You can add so much Folders as you want here! e.g. ['C:/Users/admin/Pictures', 'C:/Users/admin/Downloads']
structure.sortFolder(Folder); This moves all Files in Subfolders, see the graphic example below
Example (graphical)
Before:
📦 path/to/specified-directory
┣📜 file1.png
┣📜 file2.exe
┗📜 file3.jpgAfter:
📦 path/to/specified-directory
┣📂 .png
┃ ┗📜 file1.png
┣📂 .exe
┃ ┗📜 file2.exe
┗📂 .jpg
┗📜 file2.jpg
Features
- ✅ Sort by file extensions
- ❌ Sort by file creation date
Links
Contributing
Before creating an issue, please ensure that it hasn't already been reported!
Help
If you do not understand something in the documentation, if you have problems or you need support, then do not hesitate to join the official Server.
