-
Notifications
You must be signed in to change notification settings - Fork 0
/
DirSynch.properties
56 lines (44 loc) · 1.38 KB
/
DirSynch.properties
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
49
50
51
52
53
54
55
56
# Use hash to compare files?
# true = Size -> Hash -> Time
# false = Time -> Size
# Value: [true, false] (default: false)
hash.enabled=false
# NOT IMPLEMENTED YET
# Hash only small files?
# Value: [true, false] (default: true)
#hash.onlysmall=true
# If hashing only small files, what's the max size?
# Value: integer, size in Kb (default: 256)
#hash.onlysmall.maxsize=256
# Only synchronize times if files have the same hash.
# Value: [true, false] (default: true)
synch.times.same.hash=true
# Level of the log: [NONE, ERROR, WARNING, INFO, DEBUG] (default: WARNING)
log.level=WARNING
#log.level=INFO
#log.level=DEBUG
# The file to receive log messages.
# Value: string, path to file (default: ".\DirSynch.log")
log.file=DirSynch.log
# Append to the log file or not (overwrite the old log)
# Value: [true, false] (default: true)
log.file.append=true
# Initial main dir
# Value: string, path to main dir
maindir=
# Initial sec dir
# Value: string, path to sec dir
secdir=
# Include all subdirs in the comparison?
# Value: [true, false] (default: true)
subdirs.include=true
# Hide the equals files from the list?
# Value: [true, false] (default: true)
hide.equals=true
# NOT IMPLEMENTED YET
# Verify if the data were correctly copied?
# Value: [true, false] (default: false)
#verify.enabled=false
# Use the files hash to verify the copy?
# Value: [true, false] (default: false)
#verify.usehash=false