vote up 1 vote down star

How do I read a raw byte array from any file...

 Dim bytes() as Byte

..and then write that byte array back into a new file?

I need it as a byte array to do some processing in between.


I'm currently using:

To read

 Dim fInfo As New FileInfo(dataPath)
 Dim numBytes As Long = fInfo.Length
 Dim fsAs New FileStream(dataPath, FileMode.Open, FileAccess.Read)
 Dim br As New BinaryReader(fs)
 Dim bytes As Byte() = br.ReadBytes(CInt(numBytes))
 br.Close()
 fs.Close()

To write

Dim fs As System.IO.FileStream
fs = New System.IO.FileStream(outpath, System.IO.FileMode.Create)
fs.Write(bytes, 0, bytes.Length)
fs.Close()
flag

how about you post your attempt? – Mitch Wheat Sep 20 at 8:10
Similar to stackoverflow.com/questions/1450542/… ... but different since C# can do things that VB.NET can't. – Jeremy Rudd Sep 20 at 8:10
"C# can do things that VB.NET can't" - care to name some, other than some aspects of XML handling? – Mitch Wheat Sep 20 at 8:13
@Jeremy: I can't think of any differences in the languages which are relevant to the question. – AnthonyWJones Sep 20 at 8:16
LINQ support since I'm targeting NET 2.0? – Jeremy Rudd Sep 20 at 8:18
show 1 more comment

3 Answers

vote up 2 vote down check
Dim data() as Byte = File.ReadAllBytes(path1)
File.WriteAllBytes(path2, data)
link|flag
vote up 0 vote down

Try this:-

Dim bytes() as Byte
bytes = File.ReadAllBytes(fileName)
'' # Do stuff to the array
File.WriteAllBytes(otherFileName, bytes)
link|flag
vote up 1 vote down
System.IO.File.ReadAllBytes("myfile.txt")
link|flag

Your Answer

Get an OpenID
or

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