In Delphi 2007, how can I copy a newly created exe to a specific directory using the post-build event?
Any reference to the list of build event commands would be greatly appreciated.
Use the copy command in the post-build event:
copy
copy "$(OUTPUTPATH)" MyFolder
$(OUTPUTPATH) expands to the full path of the output file.
$(OUTPUTPATH)