Node File Structure is a Node.js module that allows you to easily sort all your Files in a directory.
Node.js 16.6.0 or newer is required.
npm i node-file-structure
Install all required dependencies:
npm i node-file-structure
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
📦 path/to/specified-directory
┣📜 file1.png
┣📜 file2.exe
┗📜 file3.jpg
📦 path/to/specified-directory
┣📂 .png
┃ ┗📜 file1.png
┣📂 .exe
┃ ┗📜 file2.exe
┗📂 .jpg
┗📜 file2.jpg
- ✅ Sort by file extensions
Before creating an issue, please ensure that it hasn't already been reported!