C# – 如何读写二进制文件?

前端之家收集整理的这篇文章主要介绍了C# – 如何读写二进制文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从任何文件读取原始字节数组,并将该字节数组写回新文件

解决方法

(编辑:注意问题改变了,最初没有提到byte [];见 revision 1)

嗯,File.Copy跳跃了起来;但是否则这听起来像一个Stream场景:

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,buffer.Length)) > 0) {
            dest.Write(buffer,bytesRead);
        }
    }
原文链接:https://www.f2er.com/csharp/92888.html

猜你在找的C#相关文章