27 lines
774 B
XML
27 lines
774 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!-- Directories Layout
|
||
|
|
||
|
The root element of the document is <dirlayout>, which accepts an optional
|
||
|
attribute rootdir. The rootdir attribute defaults to "../" and can be specified
|
||
|
as an absolute or relative path. For instance,
|
||
|
|
||
|
<dirlayout rootdir="../">
|
||
|
<dirlayout rootdir="C:\unimrcp">
|
||
|
<dirlayout rootdir="/usr/local/unimrcp">
|
||
|
|
||
|
Each subdirectory can be specified as an absolute path or a name relative to
|
||
|
the rootdir path. For instance,
|
||
|
|
||
|
<confdir>conf</confdir>
|
||
|
<confdir>C:\unimrcp\conf</confdir>
|
||
|
<confdir>/etc/conf</confdir>
|
||
|
-->
|
||
|
|
||
|
<dirlayout>
|
||
|
<confdir>conf</confdir>
|
||
|
<plugindir>plugin</plugindir>
|
||
|
<logdir>log</logdir>
|
||
|
<datadir>data</datadir>
|
||
|
<vardir>var</vardir>
|
||
|
</dirlayout>
|