Re: How to wait for file closing?
- Posted by FredRansom Dec 12, 2012
- 1565 views
I don't know what your needs are, but if you are running the programs from the command line, you might use pipes which send standard out from the first program to standard in of the second program. It works the same on Windows and Unix/Linux. The operating system then takes care of the whole thing. Just type something like this: prog1 | prog2 or prog1 > myFile > prog2. Of course this won't work if you're using stdout and stdin for other purposes.