I'm giving my first steps on programming web apps for Tizen wearable devices . This is what I want to do :
- By using the Tizen IDE , add a file , e.g. x.txt , under a folder , e.g. data/text (i.e. relative path from project root is data/text/x.txt )
- At run-time , I want to read the contents of x.txt file
- ... and do some extra processing with it .
I thought I could just read wgt-package
virtual root but my code (after fixing it) returns no file at that location .
How could I do this ? BTW , I've been testing on the web simulator .
p.s. I'm aware of the fact that this is quite simple , so guess this should be documented somewhere but I just could not find a reference after searching for a while (since yesterday), so I'm hoping someone can help me put my efforts on the right track
Thanks in advance !
You have not shown your currently working code, so it is difficult to determine your exact problem. May be you are missing a privilege?
tizen.filesystem.resolve
requireshttp://tizen.org/privilege/filesystem.read
, you have to add it to your app config.Anyhow, with
data/text/helloworld.txt
on my project folder, following sample code is working just fine:You should see a similar log in JS console as follows: