I need to delete a temporary file from my Windows C ++ application (developed in Borland C ++ Builder). I am currently using a simple one:
system("del tempfile.tmp");
This makes the console window blink in front of my application, and it does not look very professional. How can I do this without a console window?
source share