How do I read a raw byte array from any file, and write that byte array back into a new file?
byte[] data = File.ReadAllBytes(path1); File.WriteAllBytes(path2, data);