How to stop creating .stat file in Delphi 10 Seattle IDE

When I open and use Delphi project files in RAD Studio 10 Seattle IDE. It always create .stat files. Is there a way to stop creating the files?


Open project's properties, go to Build Events and in the Post-build events enter the following command:

del /q "$(INPUTDIR)$(INPUTNAME).stat"

or

if exist "$(INPUTDIR)$(INPUTNAME).stat" del /q "$(INPUTDIR)$(INPUTNAME).stat"
链接地址: http://www.djcxy.com/p/29058.html

上一篇: 为游戏领域创建一个算法

下一篇: 如何在Delphi 10 Seattle IDE中停止创建.stat文件