from
Multicore - Parallel processing on multiple cores
by Markus Buehren
This package provides parallel processing on multiple cores/machines.
|
| deletewithsemaphores(fileList)
|
function deletewithsemaphores(fileList)
%DELETEWITHSEMAPHORES Delete files using semaphors.
% DELETEWITHSEMAPHORES(FILELIST) deletes the files in cell array FILELIST
% using semaphores.
%
% Example:
% fileList = {'test1.txt', 'text2.txt'};
% deletewithsemaphores(fileList);
%
% Markus Buehren
% Last modified 05.04.2009
%
% See also SETFILESEMAPHORE, REMOVEFILESEMAPHORE.
checkWaitTime = 0.1;
nrOfAttempts = 10;
showWarnings = 0;
if ischar(fileList)
fileList = {fileList};
end
for fileNr = 1:length(fileList)
sem = setfilesemaphore(fileList{fileNr});
for attemptNr = 1:nrOfAttempts
throwError = 0;
showWarningsNow = showWarnings && (attemptNr == nrOfAttempts); % only in last attempt
if mbdelete(fileList{fileNr}, showWarningsNow, throwError)
% deleting was successful
break
else
% wait some time and check again
pause(checkWaitTime);
end
end
removefilesemaphore(sem);
end
|
|
Contact us