I have read the nice article http://www.html5rocks.com/en/tutorials/file/xhr2/
It uses HTML5 FileSystem API and FileWriter to achieve writing Blob to local files.
However, my browser Safari (currently 7.0.5) doesn't support requestFileSystem
and FileWriter
. (I have tested with Chrome. It doesn't support either.)
I also searched online but there didn't seem something like "formal answers".
Another question is why reading local files to browser is simple (using FileReader
), but writing to local files doesn't seem symmetric, especially in the new html5 standard.