Re: How to pack multiple files into one with C#

2019-12-04 Thread AudioGames . net Forum — Developers room : riku via Audiogames-reflector
Re: How to pack multiple files into one with C# Hello.I see.Thank you very much.Best regards. URL: https://forum.audiogames.net/post/482592/#p482592 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: How to pack multiple files into one with C#

2019-12-04 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector
Re: How to pack multiple files into one with C# To allow you to pack folders. URL: https://forum.audiogames.net/post/482565/#p482565 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: How to pack multiple files into one with C#

2019-12-03 Thread AudioGames . net Forum — Developers room : riku via Audiogames-reflector
Re: How to pack multiple files into one with C# Hello.Thank you for the advice.What is the purpose of FileRelativePath?Best regards. URL: https://forum.audiogames.net/post/482474/#p482474 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: How to pack multiple files into one with C#

2019-12-02 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector
Re: How to pack multiple files into one with C# //Create a class holding your file metadata.[Serializable]public class FileEntry{ public string FileName {get;set;} public string FileRelativePath {get;set;} public byte[] FileContents {get;set;}}//Then, create a list of type FileEntry like

How to pack multiple files into one with C#

2019-12-02 Thread AudioGames . net Forum — Developers room : riku via Audiogames-reflector
How to pack multiple files into one with C# Hello.I am developing some applications using C#.There is one question.Is there any way to pack multiple files into one like "pack_file" of BGT with C#?Although it is possible to embed it in an executable file in C#, I would like to avoid