vote up 0 vote down star

hi,

i have a program in c# which run some process for example

        generate.exe a.tif -o myfile.txt

and the next line after the following my code will need to access the following myfile.txt. how do i know when it is ready? i know that it will generate the file for sure, but how to set the next line so that it executes only after the file myfile.txt is generated. thanks a lot!!!

flag
Will generate.exe ends after generating myfile.txt? – aJ Sep 18 at 10:35

4 Answers

vote up 4 vote down check

Try: Process.WaitForExit

link|flag
Will work only when process exits after generating file – aJ Sep 18 at 10:36
vote up 1 vote down

Assuming that your process exits only after generating the file you can use Process.WaitForExit()

You can check also this kb article for more information: http://support.microsoft.com/kb/305369

link|flag
vote up 1 vote down

If the process ends right after creating the file then you can use Process.WaitForExit as @Naveen suggested. If process does not end then:

  1. Either you will have to introduce the IPC ( ex: events) to indicate the file creation.
  2. Or Poll the file creation by opening at some fixed amount of time. ( weak solution,I believe).
link|flag
vote up 0 vote down

Process.HasExited will give you the answer you are looking for.

link|flag

Your Answer

Get an OpenID
or

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