Tagged Questions
3
votes
2answers
1k views
Named pipe similar to “mkfifo” creation, but bidirectional
I'd like to create a named pipe, like the one created by "mkfifo", but one caveat. I want the pipe to be bidirectional. That is, I want process A to write to the fifo, and process B to read from it, ...
1
vote
3answers
929 views
python os.mkfifo() for Windows
Short version (if you can answer the short version it does the job for me, the rest is mainly for the benefit of other people with a similar task):
In python in Windows, I want to create 2 file ...