File Organizer

Organizes files in a folder into subfolders by type.

WaelAbouceo Updated

File contents

File Organizer

Sort a messy download folder into images/, docs/, and archives/.

mkdir -p images docs archives
mv *.png *.jpg images/ 2>/dev/null || true
mv *.pdf *.docx docs/ 2>/dev/null || true
mv *.zip *.tar.gz archives/ 2>/dev/null || true

Only touches the current working directory. Ask the user before moving anything.

WaelAbouceo/vouch/tree/main/bench/benign/file-organizer commit 48e853fa5b

Frequently asked questions

npx skillmds@latest add waelabouceo/file-organizer