Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output.

(It will be launched by a host app with its input and output redirected to pipes, and will be passing binary data to/from that host app, so TStream will be much better-suited to the task than ReadLn/WriteLn.)

How do I go about opening a TStream on standard input or standard output?

share|improve this question

1 Answer

up vote 28 down vote accepted

Off the top of my head:

  InputStream := THandleStream.Create(GetStdHandle(STD_INPUT_HANDLE));
  OutputStream := THandleStream.Create(GetStdHandle(STD_OUTPUT_HANDLE));

Give that a go..

share|improve this answer
4  
And tell us if it works please! – Gerry Coll Jun 30 '09 at 3:00
4  
Indeed it does, very nicely. Thanks! – Joe White Jun 30 '09 at 17:58
1  
Note that you'll need the Windows unit in your uses clause for the GetStdHandle function. – Drarok Oct 11 '11 at 16:02
Is there a cross-platform way to do the same? – himself 9 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.