I wonder if there is any way I can write to files from HTML5/JS? In the broswer ...
|
|
Yes, using the new FileWriter API. http://www.w3.org/TR/file-writer-api/ You can see the current browser support here: http://caniuse.com/#feat=filesystem |
||||
|
Assuming your end goal is to let the user save your file somewhere where they will find it, as when right-clicking a link and choosing "Save As...", there isn't wide browser coverage for those APIs yet, likely due to security considerations. What you can do, however – APIs or not – is cheesing it with a link to a
When clicked, at least in Chrome, this will save a file containing the text
|
|||
|
|
|
Yes it is possible to read & write files using HTML5+JS. Link to get you started - Exploring FileSystem API |
|||
|
|
|
As far as I know, you can't write to files from HTML5, because giving a web page access to the user's files would be a security risk. If you just need to store some data so your page can access it later, HTML5 does have something called Web Storage which can do that. Or you could store the data in cookies (if it's very small) or on the server. |
|||
|
|