javascript - Where does ripple emulator create files? -


i create file ripple emulator @ path:

fullpath: "/myappfolder/myfile.txt" 

this code:

filesystem.root.getdirectory("myappfolder", {create: true, exclusive: false}, function(dir){      dir.getfile("myfile.txt", {create: true, exclusive: true}, function(file){console.log(file);}             ,function(error){console.log("error create file: "+error.code+":"+error.message);}             );     }     , function(error){console.log("error create dir: "+error.code+":"+error.message);}     ); 

also can see file? on hard drive?


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -