Tagged Questions
The self-destruction tag has no wiki summary.
16
votes
7answers
2k views
How can I make my .NET application erase itself?
How can I make my C# app erase itself (self-destruct)? Here's two ways that I think might work:
Supply another program that deletes the main program. How is this deleter program deleted then, ...
9
votes
6answers
4k views
C++: Delete this?
Is it allowed to delete this; if it the delete-statement the last statement that will be executed in that instance of the class? Or is it maybe allowed to delete that instance in a method called at ...
9
votes
8answers
5k views
Self deletable application in C# in one executable
Is it possible to make an application in C# that will be able to delete itself in some condition.
I need to write an updater for my application but I don't want the executable to be left after the ...
8
votes
4answers
1k views
Delphi: Is it ok for a form to free it self?
I have a form that I use to show some information for some seconds. Is it ok for the form to free itself? Can I start a timer in the constructor, and then call self.free in the timer-event? Or will ...
4
votes
2answers
139 views
Self deleting bash script
How can a bash script execute even after encountering a statement to delete itself?
For eg when I ran test.sh script which conains:
<--some commands-->
rm test.sh
<--some more commands-->
...
4
votes
4answers
248 views
Is it valid to directly call a (virtual) destructor?
In this answer, Ryan directly calls the virtual destructor. I've tested the code in VS2010, and it correctly calls all destructors (tested with logging statements). Is it actually valid to do so? What ...
3
votes
7answers
495 views
How could one design a secure and “self-destructing” email?
As most of you know, email is very insecure. Even with a SSL-secured connection between the client and the server that sends an email, the message itself will be in plaintext while it hops around ...
3
votes
3answers
788 views
PHP file that should run once and delete itself. Is it possible?
PHP file that should run once with no errors and delete itself. Is it possible? How to create such file?
1
vote
3answers
2k views
How can a object self destruct on an event, in javascript?
I have this function, to create a DIV on-the-fly. But now, I want to destroy this object on onclick event, but I just don't know how.
function creatediv(id) {
var newdiv = ...
0
votes
1answer
164 views
Self-Deleting Script for both Linux Bash and Windows Batch
I have an uninstall script that cleans up an add-on tool used with an application.
Versions of the script run on both Windows and Linux.
I'd like to be able to delete the uninstall script file and ...
0
votes
0answers
76 views
Designing a self Recallable/Destructible email program
The title says it all. This is one of my assignments and I need some help in getting started. The basic idea behind the assignment is that I have to design a self destructible email program that is ...