
FOLDR - A CLI file organizer that actually lets you undo everything
# [Showoff Saturday] FOLDR - A CLI file organizer that actually lets you undo everything
Hey r/Python,
I've been burned by file organization scripts before — move everything, regret it, and there's no going back. So I built **FOLDR**.
## What makes it different?
**You can undo anything.** Every organize operation is saved to history. Run `foldr undo` and it's like nothing ever moved.
**Preview is the default.** Nothing moves until you say "yes" after seeing exactly what will happen.
**Watch mode.** Set it on your Downloads folder once, and it automatically organizes new files as they arrive.
https://github.com/qasimio/Foldr
## Quick demo
```bash
# Install
pip install foldr
# See what would happen (nothing moves yet)
foldr ~/Downloads --preview
# Actually organize (preview → confirm → move)
foldr ~/Downloads
# Changed your mind? Undo everything
foldr undo
# Keep it tidy automatically
foldr watch ~/Downloads