in reply to Problems executing a copy command on win32
Basicly, exec replaces your process with the one you are execing, so you never make it back to your loop.The "exec" function executes a system command and never returns-- use "system" instead of "exec" if you want it to return.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Problems executing a copy command on win32
by DaWolf (Curate) on Jan 14, 2004 at 22:26 UTC | |
by BrowserUk (Patriarch) on Jan 14, 2004 at 22:40 UTC | |
by DaWolf (Curate) on Jan 14, 2004 at 22:43 UTC | |
by BrowserUk (Patriarch) on Jan 14, 2004 at 22:48 UTC | |
by DaWolf (Curate) on Jan 14, 2004 at 23:04 UTC |