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.
RAD Studio 10 SeattleIDEで Delphi プロジェクト ファイルを開いて使用する場合。常に .stat ファイルを作成します。ファイルの作成を停止する方法はありますか?
RAD Studio 10 Seattle
プロジェクトのプロパティを開き、[ビルド イベント] に移動して、 [ビルド後のイベント]に次のコマンドを入力します。
del /q "$(INPUTDIR)$(INPUTNAME).stat"
また
if exist "$(INPUTDIR)$(INPUTNAME).stat" del /q "$(INPUTDIR)$(INPUTNAME).stat"