使用PhoneGap创建文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PhoneGap创建文件相关的知识,希望对你有一定的参考价值。
window.requestFileSystem( LocalFileSystem.PERSISTENT, 0, function doAccess( fs ) { // alert( 'Got file access' ); fs.root.getFile( SOURCE, { create: true, exclusive: false }, function( fe ) { reference = fe.fullPath; fe.createWriter( function( writer ) { // alert( 'Ready to write' ); writer.onwriteend = function( e ) { // alert( 'File written' ); }; writer.write( ' ' ); } ); }, function( err ) { // alert( 'No access to file entry' ); } ); }, function( err ) { // alert( 'File system not responding' ); } );
以上是关于使用PhoneGap创建文件的主要内容,如果未能解决你的问题,请参考以下文章
通过 Cordova/Phonegap 应用程序创建一个可以由另一个应用程序 (ios) 打开的文件?
如何使用 Phonegap 创建 Android 应用程序? [复制]