Install
openclaw skills install file-organizer-proAutomatically organize files into folders by type, date, or custom naming rules with preview and undo options.
openclaw skills install file-organizer-pro一键整理混乱的文件夹。三种模式:按类型、按日期、按命名规则自动归类。
--dry-run 先看再执行--undo 恢复到整理前# 按类型整理
python scripts/main.py --dir D:\Downloads
# 按月份整理照片
python scripts/main.py --dir D:\Photos --method date --date-mode month
# 按规则整理
python scripts/main.py --dir D:\Docs --method pattern --patterns "发票:Invoices,报表:Reports"
# 预览
python scripts/main.py --dir D:\Downloads --dry-run
# 撤销
python scripts/main.py --dir D:\Downloads --undo
Python >= 3.10,无第三方依赖。