2

If files are converted to base64 format can they be put in a single file?

Is there a way they can be prefixed and postfixed in the file to allow them to be extracted?

vfclists
  • 19,193
  • 21
  • 73
  • 92

1 Answers1

3

Yes, of course you can. They are just strings (and a subset at that). Choose any delimiter that is not part of your Base64 encoding (for example, "$"), and concatenate to your heart's content.

Kirk Woll
  • 76,112
  • 22
  • 180
  • 195