okay, so i'm trying to call a bunch of batch files from within 1 batch file. they're scattered throughout another drive, and i want them to run as though i double-clicked them directly.
these batch files run a for loop, feeding a .avs to x264.exe to output a .264. this is all path sensitive.
anyways, when i run my master batch file
it doesnt work, because it attempts to run all the called batch files on the folder the master batch file is in. i dont want that. i want to call them all to run in their respective folders, i just want them to run in order.
these batch files run a for loop, feeding a .avs to x264.exe to output a .264. this is all path sensitive.
anyways, when i run my master batch file
Code:
call "E:\Video\Video1\encode.bat"
call "E:\Video\Video2\encode.bat"
call "E:\Video\Video3\encode.bat"
it doesnt work, because it attempts to run all the called batch files on the folder the master batch file is in. i dont want that. i want to call them all to run in their respective folders, i just want them to run in order.
