vote up 6 vote down star

How do I read a raw byte array from any file, and write that byte array back into a new file?

flag

5  
Encoding & BinaryWriter? Encoding is a "string" thingy. You shouldn't have a problem when you are dealing with binary data. – Mehrdad Afshari Sep 20 at 7:49
Jeremy, do you mean "depending on the file type the <em>format</em> varies..." ? if the code you're using tries to read/write files with the wrong file type/format I'm sure there would be corruption. – pavium Sep 20 at 7:58
Hmmm, I've seen some 'styled' comments. I wonder how they do it. – pavium Sep 20 at 7:59
@pavium - just use the standard markdown; italics is *like this* - i.e. like this. – Marc Gravell Sep 20 at 8:01
3  
Reading a file as a byte[] is not necessarily a good idea; this could be very expensive for large files. – Marc Gravell Sep 20 at 8:23

3 Answers

vote up 2 vote down check

(edit: note that the question changed; it didn't mention byte[] initially; see revision 1)

Well, File.Copy leaps to mind; but otherwise this sounds like a Stream scenario:

    using (Stream source = File.OpenRead(inPath))
    using (Stream dest = File.Create(outPath)) {
        byte[] buffer = new byte[2048]; // pick size
        int bytesRead;
        while((bytesRead = source.Read(buffer, 0, buffer.Length)) > 0) {
            dest.Write(buffer, 0, bytesRead);
        }
    }
link|flag
vote up 4 vote down

Do you know about TextReader and TextWriter, and their descendents StreamReader and StreamWriter? I think these will solve your problem because they handle encodings, BinaryReader does not know about encodings or even text, it is only concerned with bytes.

How to read text from a file

How to write text to a file

This is an excellent intro to file IO and encodings.

link|flag
Jeremy asked about reading and writing BINARY files, didn't he? – pavium Sep 20 at 8:02
3  
If it is just binary data, then why is there any problem with the char encoding? – Dale Halliwell Sep 20 at 8:09
vote up 4 vote down
byte[] data = File.ReadAllBytes(path1);
File.WriteAllBytes(path2, data);
link|flag
1  
Note that for large files that could be very expensive. – Marc Gravell Sep 20 at 8:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.