blob: c0add7d2e3f0274875dfeed6026b6b6128efeaae (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="base.css" >
<title>Expert Settings</title>
</head>
<body>
<h1>Expert Settings</h1>
<p>
FreeFileSync has a number of special purpose settings that can only be accessed
directly via the global configuration file <span class="file-path">GlobalSettings.xml</span>.
Note that this file is read once when FreeFileSync starts and saved again on exit.
Therefore you should <b>apply manual changes only while FreeFileSync is not running.</b><br>
<br>
To locate this file on Windows enter <b><span class="command-line">%appdata%\FreeFileSync</span></b> in the Windows Explorer address bar or go to the FreeFileSync
installation folder if you are using the portable installation.
On Linux you can find the file in <b><span class="command-line">~/.FreeFileSync</span></b> for the Launchpad release and in the installation folder for the portable version.
On OS X go to <b><span class="command-line">~/Library/Application Support/FreeFileSync</span></b>.
</p>
<div class="greybox">
<div class="command-line">
<?xml version="1.0" encoding="UTF-8"?><br>
<FreeFileSync XmlType="GLOBAL"><br>
<General><br>
<<b>FileTimeTolerance</b> Seconds="2"/><br>
<<b>FolderAccessTimeout</b> Seconds="20"/><br>
<<b>RunWithBackgroundPriority</b> Enabled="false"/><br>
<<b>LockDirectoriesDuringSync</b> Enabled="true"/><br>
<<b>VerifyCopiedFiles</b> Enabled="false"/><br>
<<b>LastSyncsLogSizeMax</b> Bytes="100000"/><br>
<<b>NotificationSound</b> CompareFinished="ding.wav" SyncFinished="harp.wav"/>
</div>
</div>
<br>
<p>
<b>FileTimeTolerance:</b><br>
By default file modification times
are allowed to have a 2 second difference while still being
considered equal. This is required by FAT/FAT32 file systems which
store file times only with a 2-second precision.
</p>
<p>
<b>FolderAccessTimeout:</b><br>
When testing if a particular folder path exists FreeFileSync will time out
after the specified number of seconds if the operating system does not respond (e.g. non-reachable network share).
</p>
<p>
<b>RunWithBackgroundPriority:</b><br>
While synchronization is running, other applications that are accessing the same
data locations may experience a noticeable slowdown. Enable this
setting to lower FreeFileSync's resource consumption at the cost of a
significantly slower synchronization speed.
</p>
<p>
<b>LockDirectoriesDuringSync:</b><br>
In order to avoid race conditions of multiple FreeFileSync instances
writing to the same folder at the same time, synchronization tasks are serialized
with lock files (<span class="file-path">sync.ffs_lock</span>).
The lock files are only recognized by FreeFileSync and make sure that only a single instance
can read and write a shared folder while other instances are queued to wait.
This is primarily intended for network synchronization scenarios where
multiple users may run FreeFileSync concurrently against a common network folder.
</p>
<p>
<b>VerifyCopiedFiles:</b><br>
If active, FreeFileSync will binary-compare source and target files after
copying and report verification errors. Note that this may double
file copy times and is no guarantee that data has not already been
corrupted prior to copying. Additionally corruption may be hidden by
deceptively reading valid data from various buffers in the
application and hardware stack:<br>
<a rel="nofollow" target="_blank" href="https://blogs.msdn.microsoft.com/oldnewthing/20120919-00/?p=6563/">Does
the CopyFile function verify that the data reached its final destination successfully?</a>
</p>
<p>
<b>LastSyncsLogSizeMax:</b><br>
The progress logs of the most recent synchronizations (for both GUI and batch jobs) are collected automatically in the file <span class="file-path">LastSyncs.log</span>.
The maximum size of this log file can be set here.
</p>
<p>
<b>NotificationSound:</b><br>
Select sound files from the FreeFileSync installation directory to be played after comparison or synchronization. Set empty names if no sound should be played.
</p>
</body>
</html>
|