码迷,mamicode.com
首页 > 其他好文 > 详细

C# 文件操作 把文件读取到字节数组

时间:2014-09-09 17:45:09      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   文件   div   sp   log   c   

 

                  string  zipfile = "c:\\a.zip";
                            //方法1
                            FileStream fs = new FileStream(zipfile, FileMode.Open);
                            //把文件读取到字节数组
                            byte[] zipdata = new byte[fs.Length];
                            fs.Read(zipdata, 0, zipdata.Length);
                            fs.Close();

//方法2 //把文件读取到字节数组 byte[] zipdata = File.ReadAllBytes(zipfile);

 

C# 文件操作 把文件读取到字节数组

标签:style   blog   color   os   文件   div   sp   log   c   

原文地址:http://www.cnblogs.com/amosli/p/3962731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!