91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

dup/dup2輸出重定向

發布時間:2020-07-22 16:26:15 來源:網絡 閱讀:1119 作者:小止1995 欄目:編程語言

函數原型:
#include
int dup(int oldfd);
int dup2(int oldfd,int newfd);
dup用來復制oldfd所指的文件描述符。但復制成功時返回最小的尚未被使用的文件描述符。若有錯誤則返回-1,錯誤代碼存入errno中。返回的新文件描述符和參數oldfd指向同一個文件,共享所有的鎖定,讀寫指針,和各項權限或標志位。

1.打開一個新文件

2.關掉標準輸出文件符

3.調用dup給文件描述符

4.此時文件描述符變為1

5.將所要打印數據重定向到文件中

dup/dup2輸出重定向

#include<stdio.h>                                                                      
#include<stdlib.h>
#include<errno.h>
#include<string.h>
#include<unistd.h>
#include<fcntl.h>
#include<sys/stat.h>
#define _PATH_FILE_  "./log"
int main()
{
    umask(0);
    int fd=open(_PATH_FILE_,O_CREAT|O_RDWR,0644);
    if(fd<0){
        perror("open");
        return 1;
    }
    close(1);
    int new_fd=dup(fd);
    close(fd);
    int count=0;
    while(count++<100)
    {
        printf("helo world\n");
    }
    fflush(stdout);//must,printf重定向后變為全緩沖,緩沖區滿才會刷新,導致不會寫入文件
    close(new_fd);
    return 0;
}

dup2

#include<stdio.h>                                                              
#include<stdlib.h>
#include<string.h>
#include<fcntl.h>
#include<sys/types.h>
#include<sys/stat.h>
#define _FILE_ "./log"
int main()
{
    umask(0);
    int fd=open(_FILE_,O_CREAT|O_WRONLY,0644);
    if(fd<0){
        perror("open");
        return 1;
    }
    close(1);//isn't necessary
    int ret=dup2(fd,1);
    if(ret<0){
        perror("dup2");
        return 2;
    }
    char buf[1024];
    while(1)
    {
        memset(buf,'\0',sizeof(buf));
        fgets(buf,sizeof(buf)-1,stdin);//stdin是FILE*,0是文件描述符
        if(strncmp(buf,"quit",4)==0)//buf have '\n',you can buf[_s-1]='\0'
            break;
        printf("hello:%s",buf);
    }
    close(fd);
    return 0;
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泸州市| 新竹市| 新沂市| 昌图县| 曲麻莱县| 西青区| 巨鹿县| 安新县| 文安县| 沙坪坝区| 师宗县| 姚安县| 绥芬河市| 霍山县| 崇仁县| 黄冈市| 巴彦淖尔市| 南丹县| 文登市| 行唐县| 华阴市| 保德县| 宽城| 长寿区| 西乡县| 大港区| 古田县| 隆回县| 孝昌县| 益阳市| 郑州市| 洪湖市| 桓台县| 象山县| 凌源市| 扎鲁特旗| 富阳市| 伊春市| 敦煌市| 正安县| 上饶县|