c#的FileStream檔案流

來源:互聯網
上載者:User

檔案流

FileStream、StreamReader和StreamWriter可以操作大檔案;
FileStream 操作位元組;可以操作任何類型的檔案;
StreamReader和StreamWriter操作字元;

FileStream

方法名 作用 參數

FileStream() 建立FileStream對象 第一個是路徑,第二個是檔案模式FIleMode枚舉,第三個資料模式FileAcess

Read() 分部分讀取檔案,返回實際讀到的有效位元組數,如果讀得數量不是第三個參數指定的,就用空填充 第一個是存放的位元組數組,表示從哪個地方往數組裡放數組?,每次最多讀多少

Write() 把位元組數組寫入 第一個參數是位元組數組,第二個參數表示從哪個地方開始寫入,第三個參數表述最多寫多少

close(),dispose() 關閉流,釋放流所佔用的資源

FileMode OpenOrCreate , Append
FileAcess. Read 、Write、ReadWirte

將建立檔案流對象的過程寫在using當中,會自動協助我們釋放資源;

StreamReader和StreamWriter

可以用來讀取格式化文字檔;
有ReadLine和Write WriteLine方法

<code class="language-C# hljs cs">using System;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks; namespace 用FileStream讀寫檔案{    class Program    {        static void Main(string[] args)        {            String str = @"E:\下載\軟體";            Stopwatch sw = new Stopwatch();            sw.Start();            using (FileStream fsWriter = new FileStream(str + @"\opencv-3.0.exe", FileMode.Create, FileAccess.Write))            {                 using (FileStream fsReader = new FileStream(str + @"\opencv-2.4.9.exe", FileMode.Open, FileAccess.Read))                {                    byte[] bytes=new byte[1024*4];//4kB是合適的;                    int readNum;                    while((readNum=fsReader.Read(bytes,0,bytes.Length))!=0)//小於說明讀完了                    {                        fsWriter.Write(bytes,0,readNum);                    }                  }//suing reader            }//using writer            sw.Stop();            Console.WriteLine("總的已耗用時間為{0}",sw.ElapsedMilliseconds);            Console.ReadKey();         }//main    }//class}</code>

以上就是c#的FileStream檔案流的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.