...
ZQ.contentservice.proxy.primary.type = splitfilesystemv2
Syntax rules for repository.cfg file
This file is a Java property file. This explains the syntax rules all entries must comply with.
Comment:
All rows starting with #
are considered a comment and not executed.
Code Block |
---|
#This is a comment |
Parameter Assignment:
A value is assigned to a parameter by starting with the parameter name followed by a =
character and then the value.
Space characters are ignored, so that these two example lines have identical effect.
Code Block |
---|
name=Stephen |
Code Block |
---|
name = Stephen |
Path to directories or files
The /
(slash) is not a special character and can be used unescaped. This allows Linux paths to be written in to the configuration file as is.
The \
(backslash), however, needs to be escaped as it interpreted as escape character. So to use Windows paths in the configuration file, two backslash characters needs to be used for each backslash in Windows path.
Examples:
Code Block |
---|
# A Linux path
Directory=/var/coreoftia/config
# A Windows path
Directory=C:\\test\\repository |