I must make a local app with an interface. This app should load text files, modify them, and save them.
I made the interface with html/css/js, and the core of the app was made with js only.
Currently, I load the file with an input, but to save it, the browser makes me download it. I know this is a security measure.
This app is not going to be put online.
My question is : what can I do to replace directly the loaded file by the new one ?
- Can I use my app (html/css/js) without a browser ?
- Is there a browser that allows me to edit my local files directly ?
- Is there any solution I can't think of ? Using another language to communicate with the js maybe ?
Thanks.