104.3.2. 绝对路径
在以下 绝对 目录中为 hello.txt 文件有一个 java.io.File 句柄: \workspace\camel\camel-core\target\filelanguage\test。并且我们配置出端点,以使用绝对开始目录 \workspace\camel\camel-core\target\filelanguage。文件令牌将返回:
| 表达式 | 返回 |
|---|---|
| file:name | test\hello.txt |
| file:name.ext | txt |
| file:name.noext | test\hello |
| file:onlyname | hello.txt |
| file:onlyname.noext | hello |
| file:ext | txt |
| file:parent | \workspace\camel\camel-core\target\filelanguage\test |
| file:path | \workspace\camel\camel-core\target\filelanguage\test\hello.txt |
| file:absolute | true |
| file:absolute.path | \workspace\camel\camel-core\target\filelanguage\test\hello.txt |