回覆列表
  • 1 # 使用者444465804192

    ANSI C規定的,跟檔案操作相關的一系列函式都用f打頭,這裡的f就是file的意思。

    fopen開啟一個檔案,建立一個檔案流指標,第二個引數是讀寫模式:

    r or rb Open file for reading.

    w or wb Truncate to zero length or create file for writing.

    a or ab Append; open or create file for writing at end-of-file.

    r+ or rb+ or r+b Open file for update (reading and writing).

    w+ or wb+ or w+b Truncate to zero length or create file for update.

    a+ or ab+ or a+b Append; open or create file for update, writing at end-of-file.

    fclose是關閉一個檔案流指標

    fdopen,將檔案描述符轉換為檔案流指標

    fflush,重新整理檔案流

    freopen,重新整理、關閉舊的檔案流指標,並重建

    fscanf,從檔案讀入資訊

    fread、fwrite,讀寫檔案流

    ferror,返回檔案流操作的錯誤程式碼資訊

    feof,判斷是否到達檔案尾部

    fsetpos,在檔案流裡面重新定位檔案指標

    fgetpos,獲取檔案指標位置資訊

    具體的還有一些,可以參考標頭檔案stdio.h

  • 中秋節和大豐收的關聯?
  • 溯本求源的溯是什麼意思?