设计两个程序,要求用命名管道fifo,实现简单的文本文件或图片文件的传输功能 25

 我来答
cauth_seven
2019-05-25
知道答主
回答量:1
采纳率:0%
帮助的人:746
展开全部
读取文件写入命名管道:
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<errno.h>
#include<string.h>
#include<fcntl.h>
int main(int argc,char *argv[]){
    mkfifo("tp",0644);
    int infd;
    infd = open("test",O_RDONLY);
    if(-1 == infd){
        perror("open");
        exit(1);
    }
    int outfd;
    outfd = open("tp",O_WRONLY);
    if(-1 == outfd){
        perror("open");
        exit(1);
    }
    char buf[1024];
    int n;
 
    while((n = read(infd,buf,1024)) > 0){
        write(outfd,buf,n);
    }
    //关闭读端写端
    close(infd);
    close(outfd);
    return 0;
}
读取管道写入目标文件:
#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
#include<errno.h>
#include<string.h>
#include<fcntl.h>
 
int main(int argc,char *argv[]){
    //写端
    int outfd;
    outfd = open("target.bak",O_WRONLY | O_CREAT | O_TRUNC,0644);
    if(-1 == outfd){
        perror("open");
        exit(1);
    }
    int infd;
    infd = open("tp",O_RDONLY);
    if(-1 == infd){
        perror("open");
        exit(1);
    }
 
    char buf[1024];
    int n;
    while((n = read(infd,buf,1024))>0){
        write(outfd,buf,n);
    }
    close(infd);
    close(outfd);
    unlink("tp");
    return 0;
}
lby爱129
2008-12-22 · TA获得超过542个赞
知道答主
回答量:101
采纳率:0%
帮助的人:59.6万
展开全部
哇靠,这么难还没悬赏!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式