-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini
More file actions
36 lines (27 loc) · 1.13 KB
/
config.ini
File metadata and controls
36 lines (27 loc) · 1.13 KB
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
[watcher]
; Full path to the directory you want to monitor
watch_directory = K:\
; Watch subdirectories inside watch_directory as well
recursive = true
; Seconds to wait before retrying if the watch directory goes offline
reconnect_delay = 30
; Seconds to poll for a matching file after a DELETE before confirming it
; Increase this if large files on slow network drives are logged as
; DELETE + CREATE instead of MOVED
move_window = 10
[filters]
; Only these file extensions will be tracked (whitelist)
watch_extensions = .xlsx, .xls, .xlsm, .xlsb, .csv, .jpg, .jpeg, .png, .gif, .bmp, .tiff, .tif, .webp, .svg, .heic, .pdf, .docx, .doc, .docm, .dotx
; Ignore files starting with these prefixes (Office lock files, temp files)
ignore_prefixes = ~$, .~, ~
[storage]
; Directory where the SQLite database and log file will be saved
; Keep this OUTSIDE watch_directory
log_directory = C:\Users\primelink\Desktop\LOGS
; Name of the SQLite database file
db_name = filelog.db
; Number of days to keep events in the database (0 = keep forever)
retention_days = 90
[snapshot]
; Hashing algorithm used to fingerprint file contents
hash_algorithm = md5