-
Notifications
You must be signed in to change notification settings - Fork 0
/
fsm_config_example.json
48 lines (48 loc) · 1.22 KB
/
fsm_config_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"watch_path": "C:\\Users\\myexampledirectory",
"managed_path": "C:\\Users\\myexampledirectory2",
"managed_directory_structure": {
"school": {
"term": {
"course": {
"assignment": "assignment_assignment"
}
}
},
"important": {
"stuff": "stuff"
},
"resumes": {
"self": "self_resumes",
"other": "other_resumes"
},
"misc": {
"images_videos": "misc_images_videos",
"other": "default"
}
},
"filters": [
{
"filename_pattern": "MyResumes.*",
"allowed_filetypes": ["pdf"],
"directory_key": "self_resumes"
},
{
"filename_pattern": ".*(resume|Resume).*",
"allowed_filetypes": ["pdf"],
"directory_key": "other_resumes"
},
{
"allowed_filetypes": ["png", "jpg", "mov", "mp3", "mp4"],
"directory_key": "misc_images_videos"
},
{
"directory_key": "default"
}
],
"overwrite_on_move": false,
"sweep_loop_time": {
"seconds": 15,
"minutes": 1
}
}