The index.html
file containing JavaScript that makes use of the
Filesystem API functionality is listed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | <!DOCTYPE html> <html manifest= "manifest.appcache" > <head> <title>Filesystem API usage example</title> <link rel= "stylesheet" href= "../css/style.css" type= "text/css" media= "all" /> <script type= "text/javascript" > var loaded = false ; window.onLaunchboxLoaded = function () { loaded = true ; initFS(); } function printText(str) { var d = document.getElementById( 'text-box' ); d.appendChild(document.createTextNode(str)); d.appendChild(document.createElement( 'br' )); d.scrollTop = d.scrollHeight; } // FileEntry methods function initFS() { alert( "initfs" ); requestFileSystem(window.TEMPORARY, 1024*1024, function (filesystem) { fs = filesystem; }, errorHandler); } function errorHandler(e) { var msg = '' ; switch (e.code) { case FileError.QUOTA_EXCEEDED_ERR: msg = 'QUOTA_EXCEEDED_ERR' ; break ; case FileError.NOT_FOUND_ERR: msg = 'NOT_FOUND_ERR' ; break ; case FileError.SECURITY_ERR: msg = 'SECURITY_ERR' ; break ; case FileError.INVALID_MODIFICATION_ERR: msg = 'INVALID_MODIFICATION_ERR' ; break ; case FileError.INVALID_STATE_ERR: msg = 'INVALID_STATE_ERR' ; break ; default : console.log(JSON.stringify(e)); msg = e.name; break ; }; printText( 'Error: ' + msg); } function createFile() { fs.root.getFile(document.getElementById( "txtFieldFile" ).value, { 'create' : true }, function (fileEntry) { printText( "Created " + fileEntry.name + " file." ); }, errorHandler); } function writeToFile(){ fs.root.getFile(document.getElementById( "txtFieldFile" ).value, { 'create' : false }, function (fileEntry) { var writer = fileEntry.createWriter(); writer.write(document.getElementById( "txtFileContent" ).value); writer.onwriteend = function (event) { printText( "Done" ); }; writer.onerror = function (event) { printText( "Error occured." ); } }, errorHandler); } function readFile(){ fs.root.getFile(document.getElementById( "txtFieldFile" ).value, {}, function (entry) { entry.file( function (fd) { var reader = new FileReader(); reader.onload = function (event) { printText( "Read: " + reader.result); }; reader.onerror = function (event) { printText( "Error occured." ); }; reader.readAsText(fd); }, errorHandler); }, errorHandler); } function deleteFile(){ fs.root.getFile(document.getElementById( "txtFieldFile" ).value, { 'create' : false }, function (fileEntry) { fileEntry.remove( function () { printText( "File removed." ); }, errorHandler); }, errorHandler); } //directories function createDir(){ fs.root.getDirectory( "fooDir" , { 'create' : true }, function (dirEntry) { printText( "Created " + dirEntry.name + " dir." ); }, errorHandler); } function lookupFiles(){ var dirReader = fs.root.createReader(); dirReader.readEntries( function (entries) { if (!entries.length) { printText( 'Filesystem is empty.' ); } else { printText(JSON.stringify(entries)); } initFS(); }, false ); } function removeDir(){ fs.root.getDirectory( 'fooDir' , {}, function (dirEntry) { dirEntry.removeRecursively( function (){ printText( 'Directory successfully removed.' ); }, errorHandler); }, errorHandler); } function clearOutput(){ var d = document.getElementById( 'text-box' ); d.innerHTML = "" ; } </script> </head> <body> <header> <h3><span>Filesystem API usage example</span> </h3> </header> <!-- <input type= "button" onclick= "checkApi();" value= "Check API" /><br /> --> <input type= "text" id= "txtFieldFile" value= "sampleFileName.txt" /> <input type= "text" id= "txtFileContent" value= "This is sample file content." /> <hr /> <input type= "button" onclick= "createFile();" value= "create file" /><br /> <input type= "button" onclick= "writeToFile();" value= "write to file" /><br /> <input type= "button" onclick= "readFile();" value= "read file" /><br /> <input type= "button" onclick= "deleteFile();" value= "delete file" /><br /> <input type= "button" onclick= "createDir();" value= "create directory" /><br /> <input type= "button" onclick= "lookupFiles();" value= "lookup directory" /><br /> <input type= "button" onclick= "removeDir();" value= "delete directory" /><br /> <input type= "button" onclick= "clearOutput();" value= "clear" /> <div id= "text-box" ></div> </body> </html> |
The contents of the cache manifest file called manifest.appcache
for
this application are listed below:
1 2 3 4 5 6 7 | CACHE MANIFEST CACHE: index.html NETWORK: * |