Opening a TStream on stdin/stdout in a Delphi console app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:14:53Z http://stackoverflow.com/feeds/question/1060591 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1060591/opening-a-tstream-on-stdin-stdout-in-a-delphi-console-app 9 Opening a TStream on stdin/stdout in a Delphi console app Joe White 2009-06-29T21:13:14Z 2009-06-29T22:38:08Z <p>I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output.</p> <p>(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.)</p> <p>How do I go about opening a TStream on standard input or standard output?</p> http://stackoverflow.com/questions/1060591/opening-a-tstream-on-stdin-stdout-in-a-delphi-console-app/1060928#1060928 17 Answer by Allen Bauer for Opening a TStream on stdin/stdout in a Delphi console app Allen Bauer 2009-06-29T22:38:08Z 2009-06-29T22:38:08Z <p>Off the top of my head:</p> <pre><code> InputStream := THandleStream.Create(GetStdHandle(STD_INPUT_HANDLE)); OutputStream := THandleStream.Create(GetStdHandle(STD_OUTPUT_HANDLE)); </code></pre> <p>Give that ago..</p>