使用LINUX dup2 複製檔案描述符到標準輸出STDOUT_FILENO

gaopengtttt發表於2016-02-18
  7 
  8 #include<stdio.h>
  9 #include <sys/types.h>
 10 #include <sys/stat.h>
 11 #include <fcntl.h>
 12 #include <stdlib.h>
 13 #include <unistd.h>
 14 
 15 
 16 
 17 int main(int argc,char *argv[])
 18 {
 19     int fd;
 20     char ch;
 21     setbuf(stdout, NULL);
 22     if(argc<2)
 23     {
 24         printf("one file need!\n");
 25         exit(0);
 26     }
 27     fd=open(argv[1],O_CREAT|O_RDWR,0777);
 28     if(fd==-1)
 29     {
 30         perror("create error:");
 31     }
 32     dup2(fd,STDOUT_FILENO);
 33     close(fd);
 34     printf("testh is test");
 35 }

dup2(fd,STDOUT_FILENO); 這一行 代表我們將STDOUT_FILENO 也就是檔案描述符1 複製為我們新建的檔案的檔案描述符
這種情況下我們PRINTF就不能輸入資訊到螢幕上了,而是寫入到檔案

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-1990809/,如需轉載,請註明出處,否則將追究法律責任。

相關文章