access files from assets/www directory

后端 未结 3 1158
没有蜡笔的小新
没有蜡笔的小新 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 12:14

    You can't do what you want to do. The files in the assets directory are not technically on the file system so they are not accessible via the File API. This means calling window.resolveLocalFileSystemURI() will not return you a FileEntry.

    The best you can hope for is to access those files via XHR. If they are text based you can always take the result of the XHR and write it to the file system using the FileWriter. I wrote a blog post that shows how to get a file from the assets directory using XHR.

    http://simonmacdonald.blogspot.com/2011/12/on-fourth-day-of-phonegapping-creating.html

提交回复
热议问题