Hello!
I’m having problem storing data in a file under the /home/root directory from my application. In my .adef I have:
requires: {
file: {
/home/root/data.txt /
}
}
And in my cdef I have:
requires: {
component: {
onTargetOracleJvm
}
file: {
/home/root/data.txt /
}
}
I can easily read data from the file but storing data there is another matter… The idea is to store data in the file by one application at one time to be read by another application at another time. When i try to do this I get a “data.txt (Permission denied)”.
How do I store data in a file on the device filesystem?