Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Delphi 2007 中,如何使用构建后事件将新建的 exe 复制到特定目录中?
任何指向构建事件命令列表的链接将不胜感激。
copy在构建后事件中使用命令:
copy
copy "$(OUTPUTPATH)" MyFolder
$(OUTPUTPATH)扩展为输出文件的完整路径。
$(OUTPUTPATH)