-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.xml
More file actions
30 lines (25 loc) · 1.29 KB
/
settings.xml
File metadata and controls
30 lines (25 loc) · 1.29 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
<?xml version="1.0" encoding="UTF-8" ?>
<!--Settings file allows to change some property of script.-->
<!--Property check_only_by_name:-->
<!-- When this property is no - -->
<!-- each file will be copied if it doesn't exist in destination directory-->
<!-- or date last file change in source directory greater than ones in destination directory.-->
<!-- When this property is yes - -->
<!-- each file will be copied only if it doesn't exist in destination directory (file with equal name and path).-->
<!--Property verbose:-->
<!-- When this property is no - -->
<!-- only final report of directory copying will be printed in terminal. -->
<!-- When this property is yes - -->
<!-- final report of directory copying will be printed in terminal -->
<!-- and log for each file will be printed in terminal in any case, whether it has been copied, skipped or updated. -->
<!--Property logging:-->
<!-- When this property is yes - -->
<!-- script will create a log file in /logs directory and write logs to this file. -->
<!-- File get name from script's start time. -->
<!-- When this property is no - -->
<!-- Nothing special happens. -->
<settings>
<property key="check_only_by_name" value="no"/>
<property key="verbose" value="yes"/>
<property key="logging" value="yes"/>
</settings>