function movePic(){
window.resolveLocalFileSystemURI(imageUrl, resOnSuccess, resOnError);
}
function resOnSuccess(entry){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function(fileSys) {
fileSys.root.getDirectory("SingleSurvey_4", {create:
false, exclusive: false},
function(directory) {
entry.moveTo(directory, "newFile.jpg",
success, resOnError);
}, resOnError);
}, resOnError);
}
Simon Mac Donald
http://hi.im/simonmacdonald
> --
> You received this message because you are subscribed to the Google
> Groups "phonegap" group.
> To post to this group, send email to phon...@googlegroups.com
> To unsubscribe from this group, send email to
> phonegap+u...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/phonegap?hl=en?hl=en
>
> For more info on PhoneGap or to download the code go to www.phonegap.com
>