-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.ini
More file actions
38 lines (30 loc) · 1.05 KB
/
Copy pathconfig.ini
File metadata and controls
38 lines (30 loc) · 1.05 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
37
38
[Paths]
# directory to store log files
# default is LOG_files in the folder of the script
# or e.g /home/user/logs/LOG_files or C:\Users\user\logs\LOG_files
logging_dir = LOG_files
[Processing]
# number of images to process in each batch
batch_size = 100
# maximum number of concurrent threads
max_workers = 24
[Database]
# name of the database file
db_name = statistics_image_metadata.db
[Security]
# Enable/disable security blocklist (WARNING: Disabling is NOT recommended)
enable_blocklist = true
# Additional custom paths to block (comma-separated)
# Example: /mnt/sensitive,/home/user/private
custom_blocked_paths =
# Allow network paths (UNC/SMB shares) without confirmation
# WARNING: Network paths may be slow or contain untrusted data
allow_network_paths_without_confirmation = false
[ErrorHandling]
# Continue processing even if some files fail
continue_on_error = true
# Maximum time (seconds) to wait for ExifTool per file
exiftool_timeout = 30
# Skip files larger than this size (MB) to avoid hanging
# Set to 0 to disable size check
max_file_size_mb = 100