M
Mythran
Stuck.
I have a bunch of rather large text files filling up space that will be archived
and stored for future references. These are all XML files that are 10+ mb each
(not too big but not small either). Is there a way to convert these xml files to
binary which would make the file smaller? If so, how?
I've taken a look (and tested) the Text.Encoding classes/methods and was able to
convert to binary (but of course they were still all text). So, just writing
through a binary stream wasn't enough. I tried using convert() to convert to a
different encoding, but then again, that's not converting to binary, just UTF8,
7, ascii or unicode.
Also, we do not want it readable by text editors. As in, if someone opened it up
in a text editor, it would look garbled (hence, binary format). This is a
separate need and we can encrypt if required, just need to figure out the above
questions first. =p)
Mythran
I have a bunch of rather large text files filling up space that will be archived
and stored for future references. These are all XML files that are 10+ mb each
(not too big but not small either). Is there a way to convert these xml files to
binary which would make the file smaller? If so, how?
I've taken a look (and tested) the Text.Encoding classes/methods and was able to
convert to binary (but of course they were still all text). So, just writing
through a binary stream wasn't enough. I tried using convert() to convert to a
different encoding, but then again, that's not converting to binary, just UTF8,
7, ascii or unicode.
Also, we do not want it readable by text editors. As in, if someone opened it up
in a text editor, it would look garbled (hence, binary format). This is a
separate need and we can encrypt if required, just need to figure out the above
questions first. =p)
Mythran