發布時間:2018-04-12 22:21 作者:獨孤劍 閱讀:3759
static void Main(string[] args) { string path = "D:\\001.txt"; // 方式一 using (System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.Open)) { // 獲取文件大小 long size = fs.Length; byte[] bytes = new byte[size]; // 將文件讀到byte數組中 fs.Read(bytes, 0, bytes.Length); } // 方式二 System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.Open); // 獲取文件大小 long size = fs.Length; byte[] bytes = new byte[size]; // 將文件讀到byte數組中 fs.Read(bytes, 0, bytes.Length); // 關閉 fs.Close(); }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞