hi all,
when i run a process in unix the path points to /abc/1/2/3
I am setting a property in an xml for a process which run in path. One property i have
< property name="log.path" value="/abc/4/5"/ >
Problem is that i cannot give absolute path("/abc/1/2/3") as above. i have to give something like "../../../4/5".
< property name="log.path" value="../../../4/5"/ >
my questions is why the above evaluation is not working? currently it is considering the path given in value as constant.