top | item 40887726

Embed the resource files into the executable program

2 points| rlinge | 1 year ago |github.com

4 comments

order

rlinge|1 year ago

Embedding resource files into the executable program ensures that all necessary resources are included, simplifying distribution and preventing issues with missing files. It also enhances security by making it harder to modify or tamper with the resources.

BobbyTables2|1 year ago

Hate to rain on your parade, but linkers already do this as a built in feature. For example, binutils can embed a binary file and it shows up as a symbol.

rlinge|1 year ago

My script/tool can embed a directory with it's structure, the files(memory block) can be found by path/filename. It's suitable for my app like 'webd file server' which has a lot files embed in it.