ho creato il file 'log.txt' dal file system APIHTML5 FileSystem API
function initFS(grantedBytes) {
window.requestFileSystem(window.PERSISTENT, grantedBytes, function (filesystem) {
fs = filesystem;
fs.root.getFile('log.txt', { create: true, exclusive: true }, function (fileEntry) {
// fileEntry.isFile === true
// fileEntry.name == 'log.txt'
// fileEntry.fullPath == '/log.txt'
console.log(fileEntry.fullPath);
}, errorHandler);
}, errorHandler);
}
initFS(1024*1024);
e non comprendere appieno la sua struttura. C'è un modo per esplorare questo file ad esempio da Windows Explorer e vederlo nel file system?
HTML5 FileSystem è in modalità sandbox: non c'è un modo semplice per accedervi da Windows. Questa è una funzione di sicurezza che impedisce al codice ostile di attaccare il file system host. –
E non riesco nemmeno a impostare src del tag script in questo file ??? –
La risposta è no, e per buone ragioni. Una risposta più completa, con le ragioni, è spiegata nella mia risposta qui: http://stackoverflow.com/a/19281109/2567232 – PhilNicholas