zoukankan      html  css  js  c++  java
  • fopen与open的不同

    NAME
           open - open a file

    SYNOPSIS
            #include <sys/stat.h>
            #include <fcntl.h>
            int open(const char *path, int oflag, ...  );
    DESCRIPTION
           The  open() function shall establish the connection between a file and a file descriptor. It shall  create  an  open  file  description  that refers  to  a file and a file descriptor that refers to that open file description. The file descriptor is used by  other  I/O  functions  to refer  to that file. The path argument points to a pathname naming the file.

    FILE *fopen(const char *filename, const char *mode)
    fopen opens the named file, and returns a stream, or NULL if the attempt fails. Legal values for mode include:

        "r" open text file for reading 
        "w" create text file for writing; discard previous contents if any 
        "a" append; open or create text file for writing at end of file 
        "r+" open text file for update (i.e., reading and writing) 
        "w+" create text file for update, discard previous contents if any 
        "a+" append; open or create text file for update, writing at end  
        Update mode permits reading and writing the same file; fflush or a file-positioning function must be called between a read and a write or vice versa. If the mode includes b after the initial letter, as in "rb" or "w+b", that indicates a binary file. Filenames are limited to FILENAME_MAX characters. At most FOPEN_MAX files may be open at once.


    范晨鹏
    ------------------
    软件是一种态度
    成功是一种习惯


  • 相关阅读:
    【2021-01-01】爱自己等于爱家人
    【2020-12-31】2020的收获与2021的挑战
    【2020-12-30】说别人辛苦,其实是自己辛苦
    【一句日历】2021年1月
    最大子序和
    判断子序列
    下载安装 ethereal
    6812. 【2020.10.05提高组模拟】战争
    6816. 【2020.10.06提高组模拟】随机的排列
    python 版本及pip安装相关
  • 原文地址:https://www.cnblogs.com/diylab/p/1146205.html
Copyright © 2011-2022 走看看