...
The \
(backslash), however, needs to be escaped as it is interpreted as escape character. So when using Windows paths in the configuration file with backslash, it must be escaped to \\
(double backslash).
Info |
---|
Note: In container deployment, Windows path with drive letters or backslashes are not allowed. |
Examples:
Code Block |
---|
# A Linux path Directory=/var/coreoftia/config # Windows paths Directory=C:\\test\\repository Directory2=C:/test/repository2 # A UNC path Directory=\\\\10.9.8.7\\ARCHIVE |
...