zoukankan      html  css  js  c++  java
  • fopen的a+和rewind

    记得以前出现过一次类似问题:

     

    这次check_list代码就顺便修改一下。

      来看看man fopen的结果;

     a      Open for appending (writing at end of file).  The file is created if it does not exist.  The stream is positioned at the end of the file.
    
     a+     Open for reading and appending (writing at end of file).  The file is created if it does not exist.  The initial file position
           for reading is at the beginning of the file, but output is always appended to the end of the file.

     即:无论用fseek,rewind等文件位置指针定位函数,在写入文件信息时,均只能写入到文件末尾

    "a" = append: Open file for output at the end of a file. Output operations always write data at the end of the file, 
    expanding it. Repositioning operations (fseek, fsetpos, rewind) are ignored. The file is created if it does not exist.

    可以阅读man 相关文档。man 3 fopen

    所以对于process的log 文件,检测文件不存在,这w+方式打开,如果存在则r+方式打开,如此可以使用rewind 调整文件偏移指针写入

    http代理服务器(3-4-7层代理)-网络事件库公共组件、内核kernel驱动 摄像头驱动 tcpip网络协议栈、netfilter、bridge 好像看过!!!! 但行好事 莫问前程 --身高体重180的胖子
  • 相关阅读:
    SA 的参数
    superobject中 JavaToDelphiDateTime的使用
    关于Linux下进程间使用共享内存和信号量通信的时的编译问题
    Linux匿名管道与命名管道
    C++复数四则运算的实现
    C++类编程(一)const的使用
    读书会思考与学期总结
    xenomai安装
    Xenomai 安装准备工作
    Xenomai
  • 原文地址:https://www.cnblogs.com/codestack/p/14624459.html
Copyright © 2011-2022 走看看