I\'m attempting to execute a batch script that currently looks like this:
D:
cd D:My Documents\\FtpSolution\\Test
getftp.bat
call delimconvert.exe
call conve
Use call
:
Calls one batch program from another.
CALL [drive:][path]filename [batch-parameters]
batch-parameters Specifies any command-line information required by the
batch program.
If you invoke other batch files without call
then control is passed to them but not back again (which is what call
changes).