Jump to content
Sign in to follow this  
wxinix

Is there a Delphi "subprocess" library?

Recommended Posts

I am looking for a Delphi subprocess library, something like Python's subprocess -  is there one?

Share this post


Link to post
Posted (edited)
43 minutes ago, wxinix said:

I am looking for a Delphi subprocess library, something like Python's subprocess -  is there one?

If I understood this correctly, a Python subprocess starts an external program, connects its stdin/out/err to pipes and gets the return code when it exits.

 

There is nothing like this in the standard Delphi RTL but there are multiple third party options. If I remember correctly one is in the JCL, another is my own TAsyncExec class in unit u_dzAsyncExec which is part of my dzlib library.

Edited by dummzeuch
  • Thanks 1

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×