我想使用html5和javascript或jquery从chrome(所有版本)写入任何文件的txt。我尝试了FileSystem API,尝试的代码是:函数onFs(fs){ console.log('test'); fs.root.getFile('log.txt',{create:true,Exclusive:true}, 函数(fileEntry){ // fileEntry.isFile === true // fileEntry.name =='log.txt' // fileEntry.fullPath =='/log.txt' fileEntry.getMetaData(function(md){ console.log(md.modificationTime.toDateString()); },onError); }, onError );}window.webkitRequestFileSystem(TEMPORARY,1024 * 1024 / * 1MB * /,onFs);但是没有用。有什么办法可以写入文件?
添加回答
举报
0/150
提交
取消