sublimetext2

Can you recovered delete folders with sublime text 2?


I think i've deleted a whole folder by accident in sublime text 2. Is it possible to recover this deleted folder? I've checked my trash and nothing.

Using windows 7.


Solution

  • Its gone buddy ! I did something similar and couldn't retrieve a file. Anyway, not sure if it is going to help you but I wrote a simple SLT-plugin to back up modified files (locally and remote).

    Local backup plugin:

    class RemoteEdit(sublime_plugin.EventListener):
    def on_post_save(self, view):
        os.system('cp -r %s %s' % (view.file_name(), <backup_path>)) #use scp for remote backup