Search code examples
c#stringfilebase64filestream

Encode a FileStream to base64 with c#


I know how to encode / decode a simple string to / from base64.

But how would I do that if the data is already been written to a FileStream object. Let's say I have only access to the FileStream object not to the previously stored original data in it. How would I encode a FileStream to base64 before I flush the FileStream to a file.

Ofc I could just open my file and encode / decode it after I have written the FileStream to the file, but I would like to do this all in one single step without doing two file operations one after another. The file could be larger and it would also take double time to load, encode and save it again after it was just saved a short time before.

Maybe someone of you knows a better solution? Can I convert the FileStream to a string, encode the string and then convert the string back to a FileStream for example or what would I do and how would such a code look like?


Solution

  • You can also encode bytes to Base64. How to get this from a stream see here: How to convert an Stream into a byte[] in C#?

    Or I think it should be also possible to use the .ToString() method and encode this.