python读写命名管道

apue里说匿名管道只能在父子进程里使用。如果两个没有关系的进程要通信,就只能使用命名管道,最简单的代码这里:

pwrite.py

import os

fd = os.open('pipetest',os.O_NONBLOCK | os.O_CREAT | os.O_RDWR)
os.write(fd,"hello")

 

pread.py

import os

fd = os.open('pipetest',os.O_RDONLY)
s = os.read(fd,5)
print s

转载于:https://www.cnblogs.com/code-style/archive/2012/06/11/2545016.html

你可能感兴趣的:(python读写命名管道)