I want to make some file operation using Javascript or jQuery like:
- File create
- File write
- File read
- Update
- Remove/delete
Is it possible to do above stuffs? If possible, from where I can get the idea? Please suggest me.In any end (client/server) how can it be done?i asked this just for know!
There are 2 HTML5 APIs of interest.
The File API which allows you to read files (of a users choice). Most modern browsers implement this.
The File Write API which allows you to write to files. No browsers implement this as of now.
I presume you can also use IE only ActiveX controls to do file manipulation on windows.