C檔案操作常用函式

2021-05-01 20:46:56 字數 1032 閱讀 7256

函式名: fseek 功 能: 重定位流上的檔案指標 用 法: int fseek(file *stream, long offset, int fromwhere); 程式例: #include

long filesize(file *stream); int main(void) long filesize(file *stream) 函式名: ftell 功 能: 返回當前檔案指標 用 法: long ftell(file *stream); 程式例: #include

int main(void) 函式名: fread 功 能: 從乙個流中讀資料 用 法: int fread(void *ptr, int size, int nitems, file *stream); 參 數:用於接收資料的位址(字元型指標)(ptr) 單個元素的大小(size) 元素個數(nitems) 提供資料的檔案指標(stream) 程式例: #include

#include

int main(void) /* write some data to the file */ fwrite(msg, strlen(msg)+1, 1, stream); /* seek to the beginning of the file */ fseek(stream, seek_set, 0); /* read the data and display it */ fread(buf, strlen(msg)+1, 1, stream); printf("%s/n", buf); fclose(stream); return 0; } 函式名: fwrite 功 能: 寫內容到流中 用 法: int fwrite(void *ptr, int size, int nitems, file *stream); 程式例: #include

struct mystruct ; int main(void) s.i = 0; s.ch = 'a'; fwrite(&s, sizeof(s), 1, stream); /* write struct s to file */ fclose(stream); /* close file */ return 0; }

C 檔案操作常用函式

c 檔案操作常用函式 fopen fclose ftell fread fseek fopen 功能 開啟檔案 定義函式 file fopen const char path,const char mode 輸入引數 path字串包含欲開啟的檔案路徑及檔名 mode字串則代表著流模式。常見模式為r ...

C語言檔案操作常用函式

1.fopen函式用來開啟乙個檔案 對磁碟檔案的操作必須 先開啟,後讀寫,再關閉 開啟 檔案的含義 以某種方式從磁碟上查詢指定的檔案或建立乙個新檔案。標頭檔案 include 函式原型 file fopen const char path,const char mode 函式形參 path 包含欲開...

C 常用的檔案操作路徑函式

shlwapi.dll中的實用api函式發布 在windows system目錄下有這個動態鏈結庫 bool pathfileexists lpctstr lpszpath 功能 檢查檔案 路徑是否存在 lptstr pathfindfilename lpctstr ppath 功能 獲得路徑中的檔...