1.fprintf
功能:傳送格式化輸出到乙個檔案中
函式原型:int fprintf(file *stream, char *format[, argument,…]);
2.fscanf
功能:從乙個流中執行格式化輸入
函式原型:int fscanf(file *stream, char *format[,argument…]);
3.fclose
功能 : fclose()用來關閉檔案流。此動作會讓緩衝區內的資料寫入檔案中,並釋放系統所提供的檔案資源。
函式原型 : int fclose(file * stream);
4.feof
功能 : 檢查檔案流是否讀到了檔案尾
函式原型 : int feof(file * stream);
5.freopen
功能 : 重定向輸入輸出流
函式原型 : file * freopen(const char * path,const char * mode,file * stream);
6.fseek
功能 : 移動檔案的位置指標
函式原型 : int fseek(file * stream,long offset,int whence);
7.ftell
功能 : 獲取檔案的位置指標
函式原型 : long ftell(file * stream);
8.fwrite
功能 : 將資料寫入檔案流,最多寫入count個項,每個項size個位元組
函式原型 : size_t fwrite(const void* buffer, size_t size, size_t count, file* stream);
9.fread
功能 : 從檔案流中讀資料,最多讀取count個項,每個項size個位元組
函式原型 : size_t fread ( void *buffer, size_t size, size_t count, file *stream) ;
10.mktemp
功能 : 產生唯一的臨時檔名
函式原型 : char * mktemp(char * template);
示例1:
#include
void main()
示例2:#include
void main()
示例3:#include
void main()
示例4:#include
.h>
void main()
C語言檔案操作常用函式
1.fopen函式用來開啟乙個檔案 對磁碟檔案的操作必須 先開啟,後讀寫,再關閉 開啟 檔案的含義 以某種方式從磁碟上查詢指定的檔案或建立乙個新檔案。標頭檔案 include 函式原型 file fopen const char path,const char mode 函式形參 path 包含欲開...
C語言常用檔案操作,增刪改查檔案
標頭檔案 include include file fp path是檔案路徑 mode可以是 r 讀,w 寫,a 附加等等if fp fopen path,mode null fclose file fp access path,mode 返回0表示擁有對該檔案的某種權利,權利是由mode確定,r ...
C語言中常用檔案操作函式
最近在學習c語言,現將主要用到的檔案操作的函式使用方法總結如下 1.檔案的開啟與關閉 函式fopen fclose fopen path mode path 檔名,可以包含路徑 mode 檔案開啟的方式。對文字檔案 r 唯讀 檔案已經存在 w 只寫 檔案可以存在,也可不存在,存在則覆蓋,不存在則建立...