I have a C# winform app. It handles some sound effects.
I was wondering whether I should make them embedded resources or put them in folders in the app directory.
I don’t want the user of my app to mess with them. That’s why I don’t wanna put them in folders, but also, there’s a problem I think. Their size in total is about 150 Migs, so if I’m gonna make them Embedded, will that size effect the performance of my App?
If so, will compressing them in ZIP files really help?
There is no correct answer to this – but here is my $0.02.
I think that you should leave them separate and not worry if the user messes with them. If it is really important that they don’t ever change make a hash of the file and store the hash then then throw an error if they change. Including them in the binary probably will not help performance – and might hurt your load time, but it will make your exe bigger and make it more difficult to update and deploy.