Use the package manager pip to install riordinato.
$ pip install riordinato
Riordinato includes a cli so you can organize all your files from the terminal.
First you must go to the directory where you want riordinato to organize your files, then you must start the database with:
$ riordinato init
Now you have to add a prefix and a directory path.
$ riordinato add <prefix> <path>
Now to organize your files put:
$ riordinato organize
If you want to know more about the cli read the documentation here.
Riordinato is used to organize files by prefixes. For example, we want to move files that have the prefixes python and work.
/home/user/documents
├── pythonWork.py
├── python_examples.txt
├── family.jpg
├── dog.png
├── index.html
├── work_list.txt
├── any_work.docx
├── python_exercise.pdf
├── work_for_later.docx
│
├── python/
└── work/
First import riordinato
from riordinato import Riordinato
Define a directory where we have the files we want to move.
path = '/home/user/documents'
NOTE: You can also put a windows path.
Create the instance.
organize = Riordinato(path)
If you want to see the files that are in the path you can print the files attribute.
>>> print(organize.files)
['pythonWork.py', 'python_examples.txt', 'family.jpg', 'dog.png', 'index.html',
'work_list.txt', 'any_work.docx', 'work_for_later.docx', 'python_exercise.pdf']
Now you have to create a prefix. to do it is the same when you create a new item for a dictionary, the key is the prefix and the value is the destination
organize.prefixes['python'] = './python'
organize.prefixes['work'] = './work'
NOTE: Riordinato by default transforms all paths into an absolute path. This allows your program to run from any path.
To organize our files we use the movefiles method
organize.movefiles()
And our directory would look like this.
/home/user/documents
├── family.jpg
├── dog.png
├── index.html
├── any_work.docx
│
├── python/
│ ├── python_exercise.pdf
│ ├── pythonWork.py
│ └── python_examples.txt
└── work/
├── work_for_later.docx
└── work_list.txt
If we want to move files with a specific prefix, use the "specific" parameter of the method.
organize.movefiles(specific='python')
/home/user/documents
├── family.jpg
├── dog.png
├── index.html
├── work_list.txt
├── work_for_later.docx
├── any_work.docx
│
├── python/
│ ├── python_exercise.pdf
│ ├── pythonWork.py
│ └── python_examples.txt
└── work/
You can also ignore files that contain a certain prefix. In this case we will ignore the files that contain the python prefix.
organize.movefile(ignore='python')
/home/user/documents
├── pythonWork.py
├── python_examples.txt
├── family.jpg
├── dog.png
├── index.html
├── any_work.docx
├── python_exercise.pdf
│
├── python/
└── work/
├── work_for_later.docx
└── work_list.txt
NOTE: the specific and ignore parameters are also compatible with lists.
A contributing.md will be added soon.