Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 948
Chau Chee Yang Avatar asked Sep 16 '15 00:09

Chau Chee Yang


1 Answers

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"
like image 186
Grzegorz Skoczylas Avatar answered Sep 28 '22 09:09

Grzegorz Skoczylas