parallel: add local switch to confirm_recursive_rmdir

time-shift
Houtan Bastani 2013-12-18 14:07:25 +01:00
parent 7bc5d5c2ec
commit bbdad94d96
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ for indPC=1:length(Parallel),
% It is necessary because the command rmdir always ask at the user to confirm your decision before
% deleting a directory: this stops the computation! The Octave native function 'confirm_recursive_rmdir'
% disable this mechanism.
val = confirm_recursive_rmdir (false);
val = confirm_recursive_rmdir (false, 'local');
[stat, mess, id] = rmdir(['\\',Parallel(indPC).ComputerName,'\',Parallel(indPC).RemoteDrive,'$\',Parallel(indPC).RemoteDirectory,'\',PRCDir],'s');
else