access files from assets/www directory

后端 未结 3 1159
没有蜡笔的小新
没有蜡笔的小新 2020-11-28 11:34

let\'s say I\'ve got a file called foo.html sitting (quite comfortable) in my assets/www directory (next to my index.html).

I\'d like to copy that file

3条回答
  •  半阙折子戏
    2020-11-28 11:52

    You should be able to access the file this way:

    window.resolveLocalFileSystemURI("file:///android_asset/www/foo.html", onResolveSuccess, onFail);
    

    You can then use the File API - FileEntry.copyTo or FileEntry.moveTo to actually do the action. Note - you cannot actually write into the assset/www folder, only to an SD card.

    Hope this helps

提交回复
热议问题