I have this application to upload files to server via API, is a WinForm application in c#, this application starts a process
This process is an .exe file from another WinForm Application. I tried to get the process by id, by name even get all the process and I can't find the process started.
The problem is I run the process to upload files, the form has one cancel button, this button should pause the process and ask the user if he wants to cancel the operation or not, if he clicks yes I have to call another piece of code but I can't find the process and I can't interrupt or pause.
Any thoughts?