Skip to content

Commit 8680b4a

Browse files
committed
Add readme
1 parent da60ad1 commit 8680b4a

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

README.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# sort-it
2+
3+
Sort-IT is a command line tool that allows you to sort your unorganized files. To do so, download the latest release binary and execute it with one of the following parameters.
4+
5+
```bash
6+
# full sort, copy duplicates into subfolder of destination
7+
--copy-duplicates
8+
# don't check file type (mulitmedia)
9+
--duplicates-only
10+
# don't check file type (multimedia) and copy duplicates
11+
--duplicates-only --copy-duplicates
12+
# only sort files of type multimedia, ignore other file types
13+
--multimedia-only
14+
# only sort files of type multimedia, ignore other file types, and copy duplicates
15+
--multimedia-only --copy-duplicates
16+
```
17+
18+
When running `sort-it` it creates the following folder structure in the destination folder. Some subdirectories only get created when they are needed.
19+
20+
```
21+
.
22+
├── Data
23+
├── Duplicates
24+
│   ├── Files
25+
│   ├── sort-it_duplicates.html
26+
│   └── sort-it_duplicates.json
27+
└── Multimedia
28+
   ├── Audio
29+
   │   ├── Music
30+
   │   │ └── <Artist>
31+
   │   │ └── <Album>
32+
   │   └── Sounds
33+
   │   └── <Year>
34+
   │   └── <Month>
35+
   ├── Pictures
36+
   │   └── <Year>
37+
   │   └── <Month>
38+
   └── Videos
39+
      └── <Year>
40+
      └── <Month>
41+
```
42+
43+
## References
44+
45+
- [exiftool] https://github.com/exiftool/exiftool

0 commit comments

Comments
 (0)