How does Visual Studio code recover data after a crash? Crash includes both sudden power outages and handled exceptions. As examples of what I mean,
- Notepad ++ has a backup folder that periodically saves copies of your files. Nothing is lost in the last 7 seconds, even if the power goes out.
- Atom saves IndexedDB, which should restore everything after an exception. I have no idea what happens when a power outage occurs.
- Inkscape uses exception handling to recover data. If the power goes out, data is lost.
- Scite has no backup plan.
source share