Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 531 Bytes

文件IO.md

File metadata and controls

24 lines (17 loc) · 531 Bytes

文件I/O方式分为种:

  • 基于文件描述符的I/O操作(Linux系统API)
  • 基于数据流的I/O操作(标准C)

基于文件描述符

基于文件描述符的I/O常用的就是5个系统函数:

open read write lseek close

基于数据流

基于数据流的I/O操作常用的函数有:

fopen fclose fread fscanf fwrite getc