Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting content of a local file without uploading [duplicate]

I'm writing an offline webapp that allows user to select local file, modify it and than saves a copy also locally. Is it possible without any server (I can upload a file and return base64 of it, but it's not much of a offline)? App needs to work only on Google Chrome, so maybe I should look here?

like image 398
suda Avatar asked Nov 09 '11 21:11

suda


1 Answers

The HTML5 File API might prove usefull

http://www.html5rocks.com/en/tutorials/file/dndfiles/

like image 177
ChrisR Avatar answered Sep 28 '22 07:09

ChrisR