Ever since the introduction of the Windows Recycle Bin, which some of us DOS people disliked back then, there has been an option to bypass it: The "Shift+Delete" keyboard shortcut. It deletes a file directly, without an option to undo.
I've been using it as a reflex instead of plain old Delete ever since, for reasons I can't remember. And whenever I screw up and delete important things by accident, I curse that day. Trying to "un-learn" the command seems impossible, I've tried and failed.
There are scripting remedies for clumsy people like myself, one that I found and use is called AutoHotkey. Unfortunately though, that app only works when deleting in Windows Explorer. Total Commander seems to override such scripts.
So it would be great of you to add an option in TC for people like me, with buggy brains that can't be fixed. To force files into the Recycle Bin, even if Shift+Delete is pressed. Correct me if I'm wrong, but I don't think there is such an option or add-on today. If there is, I'd like to know. If there isn't, then I suggest it as a new feature. Thanks for a great app.
Option to save clumsy "Shift+Delete" addicts?
Moderators: Hacker, petermad, Stefan2, white
VicVega
Apart from what gulikoza suggested, you could try using some RecycleBin replacement application (so-called, secure or protected RecycleBins) and forget about methods of deleting the files, in any case they'll all end up in the protected directory, even when removed not by you but programmatically, by other applications. I personally have been using Condusiv Undelete for quite a time (formerly, Diskeeper Undelete, formerly Executive Undelete), and now I cannot imagine working without such tool.
Apart from what gulikoza suggested, you could try using some RecycleBin replacement application (so-called, secure or protected RecycleBins) and forget about methods of deleting the files, in any case they'll all end up in the protected directory, even when removed not by you but programmatically, by other applications. I personally have been using Condusiv Undelete for quite a time (formerly, Diskeeper Undelete, formerly Executive Undelete), and now I cannot imagine working without such tool.
Flint's Homepage: Full TC Russification Package, VirtualDisk, NTFS Links, NoClose Replacer, and other stuff!
Using TC 11.03 / Win10 x64
Using TC 11.03 / Win10 x64
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
You could use an Autohotkey script:
Code: Select all
#ifWinActive ahk_class TTOTAL_CMD
{
$+Del::Send, {Delete} ; Shift + Delete = Normal Recycle Bin Delete
$^+Del::Send, +{Delete} ; Ctrl+Shift + Delete = Permanent Delete (bypass Recycle Bin)
}