Can I write a file in a web application?

I want to create a fully client text editor. Unfortunately, dart: io does not work on the client side . I want to save the text that the user typed into a file on his machine. He may have full control over where he is saving, or something else that I must skip for it to be considered safe. Can I write a file to my computer?

+3
source share
2 answers

See equivalent JavaScript answer:

Burn local file using jQuery or Javascript

The web platform is specifically designed to prevent sites from writing arbitrary data to client computers.

This is the protection of your computer.

, , - - dropbox google drive api, "" Dropbox gdrive, dropbox gdrive . : SourceKit


+3

HTML5 LocalStorage. , .

, , "" .

+4

All Articles