1.1.0 • Published 9 years ago

movebot v1.1.0

Weekly downloads
1
License
Apache License Ve...
Repository
github
Last release
9 years ago

Move-Bot

Organise your files with a simple JSON file!

The guide below is an example of what it will soon be like to use, Implementation is not done yet!

Installation

Make sure you have node installed and then run

sudo npm install -g movebot

Usage

Using MoveBot is very simple, Just write your Sorting Schema ( See configuration ) and then run movebot with your file as one of the arguments.

    movebot your-sorting-schema.json

This will organise your current directory using your-sorting-schema.json

Configuration

Movebot only needs a json file to run, in this json file simply specify all the 'rules' you want as keys (Using regular expressions) and then where you want them to go a values

{
	".*\.txt" : "Docs/Text/"
	"awesome.docx" : "Docs/Awesome/"
	"__ELSE__" : "Other/"
}

If the files used are

hi.txt
test.txt
awesome.docx
other.md

This will result in the following directory structure

Docs/
  Text/
    hi.txt
	test.txt
  Awesome/
    awesome.docx
Other/
  other.md

Note that the "ELSE" key IS required

1.1.0

9 years ago

1.0.0

9 years ago

0.0.0

9 years ago