I have this parameter with a path file:
<parameter name="transport.vfs.FileURI">file:///Users/Desktop/test/in</parameter>
I need to change FileURI value dynamically, for example, using the value of a property that was set before. Something like that:
<parameter name="transport.vfs.FileURI">get-property('path')</parameter>
Or that:
<parameter name="transport.vfs.FileURI" expression="get-property('path')"/>
How can I change the FileURI value for a property value?