Posts: 1,769
Threads: 410
Joined: Feb 2003
how can i grab the output of a dos command when using "system" to run the command ie xcopy.
Posts: 12,135
Threads: 142
Joined: Dec 2002
Don't know how to do it with system(), but you can use RunConsole.
RunConsole "cmd.exe" "/c ''cd C:\ && dir''" _s
out _s
Tip: With system() and with RunConsole, several commands can be passed. All must be enclosed in double quotes. Commands separated by &&.
Posts: 1,769
Threads: 410
Joined: Feb 2003