You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,35 @@ OrganizeIt is an open-source project designed to help you organize and manage yo
7
7
-**Automatic File Sorting**: Automatically sort files into folders based on file type or custom rules.
8
8
-**Batch Renaming**: Rename multiple files at once using customizable patterns.
9
9
-**File Filtering**: Filter files by type, size, date, and other attributes.
10
-
-**Custom Rules**: Create and apply custom rules for organizing files.
11
10
-**User-Friendly Interface**: Easy-to-use interface for managing your files.
11
+
-**Custom Rules**: Create and apply custom rules for organizing files.
12
+
13
+
By default, a default config.json ships with the program [config](https://github.com/Toyin5/OrganizeIt/blob/main/OrganizeIt.Cli/config.json) which is a basic config.
14
+
config.json follows this structure:
15
+
```json
16
+
{
17
+
"Configurations": [
18
+
{
19
+
"DirectoryName": "Your preferred folder name",
20
+
"Extensions": [".pdf", ".docx", ".txt"]
21
+
},
22
+
{
23
+
"DirectoryName": "Your preferred folder name",
24
+
"Extensions": [".jpg", ".png", ".gif"]
25
+
},
26
+
{
27
+
"DirectoryName": "Videos",
28
+
"Extensions": [".mp4", ".avi"]
29
+
},
30
+
{
31
+
"DirectoryName": "Applications",
32
+
"Extensions": [".exe", ".msi"]
33
+
}
34
+
]
35
+
}
36
+
```
37
+
38
+
The app currently supports organization by extensions. I'm working on making it more flexible
0 commit comments