Holding matlab execution while dos/system command is running

Hi all,
Z (see code below) is a batch file to be executed using 'dos'. The challenge however is that V requires 'x.log' which is an output files after completely executing the batch file. What I observe is error message saying that the output file do not exist; apparently because the 'x.log' is yet to be generated by the batch file. Please How can I make matlab hold on until after the batch file has been completed so that the x.log file can be available as input to V?
z = dos('x.bat'); v = fileread('x.log')
Thank you in advance.
OlFat

 Akzeptierte Antwort

Image Analyst
Image Analyst am 20 Apr. 2014
Maybe you can enter a loop until it's created
z = dos('x.bat');
% Wait for file to be created.
maxSecondsToWait = 100; % Wait 100 seconds at most.
secondsWaitedSoFar = 0;
while secondsWaitedSoFar < maxSecondsToWait
if exist('x.log', 'file')
break;
end
pause(1); % Wait 1 second.
secondsWaitedSoFar = secondsWaitedSoFar + 1;
end
if exist('x.log', 'file')
v = fileread('x.log')
else
warningMessage = sprintf('Warning: x.log never got created after waiting %d seconds', secondsWaitedSoFar);
uiwait(warndlg(warningMessage));
end

4 Kommentare

thanks so much image analyst.
Let's say that 'x.log' is created around 10sec after execution. Does the while loop stop at this point? or does it execute till the specified time?
If so, how can i stop the while loop once the file exist?
Thanks
It will break from the loop as soon as the file is detected - 10 seconds in your example. By the way, instead of exist(), this is how you do it now:
if isfile('x.log')
Found the code useful. Thank you Img analyst.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 20 Apr. 2014

0 Stimmen

dos() does wait for the end of the command. However if the command involves opening up an independent graphics window instead of working in command-line mode, then as far as MS Windows is concerned the .bat is finished. There are tools that can be used to detect whether a process is executing if necessary.

1 Kommentar

Could you please tell more about the tools you are talking about? Thanks.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by