I have a utility which updates applications by simply copying/replacing the executables. Now, I have some DLL files which need to be updated as well. However, sometimes Windows will not let me replace it because something is using it, and sometimes there’s so many things using the DLL that I cannot guarantee it will be unlocked for me to replace it.
Currently, my only work-around is to re-name the existing DLL first, and then I can copy the new one in its place. But then the old DLL gets left behind with an altered file name.
How can I replace a DLL programatically in this situation?
Your method is fine – just rename the file and copy the new DLL into the proper location. Once that is done, you can use the Windows API function MoveFileEx to register the old file for deletion the next time the machine is restarted. From the MSDN documentation:
So you would want to do something like:
I have not worked much with Delphi. Presumably you could either import the proper Windows API functions and make this call directly from Delphi, or else write a small C++ program that you can call to take care of this for you.