philnext
philnext

Reputation: 3402

How to have the origins of the exe size in Delphi

I sometimes try to understand what constitute the size of my exe in Delphi. For it I use Gexpert 'Project Analyser' but when I sum all the size of the Code+Data+Ressource I never have my exe size (I have more or less 70% of it). I try it on a simple project without embeded images or others.

So : what am I missing ? And what is the good way to list all the 'pieces' of my exe ?

Upvotes: 3

Views: 183

Answers (1)

Osman Turan
Osman Turan

Reputation: 1371

The quick and dirty way that can be used is to open the executable with 7-zip .

It shows each sections along with their length using PE format.

Upvotes: 8

Related Questions