Reputation: 10153
I have a program with about 70000 files (css files,mp3 files,picture,...) in a DVD.
I want to put them to a single file(like a dll).
Is there any way to do this?
I also need their address in my application; is this possible?
Upvotes: 0
Views: 63
Reputation: 1859
You might want to create an .iso file and read it using a C# library. There are some commercial ones I found. And there should be some cost-effective options too.
Upvotes: 1
Reputation: 498992
Put your files in a compressed archive (like Zip or 7z).
You can use compression libraries to access the files from the archive.
Upvotes: 1