-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathebFileLoopWrapper.m
More file actions
35 lines (28 loc) · 879 Bytes
/
ebFileLoopWrapper.m
File metadata and controls
35 lines (28 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function ebFileLoopWrapper(filePattern, f)
% ebFileLoopWrapper(filePattern, functionHandle)
%
% Function to take a filename pattern and apply a function to each one in
% sequence. A function handle is the name of the function with the '@' sign
% added to the front, a la @ge_importScript2 as the handle for ge_importScript2,
% etc...
%
% PROTOTYPE!
%
% MDT
% 2016.03.15
% Version 0.0.0
% Use the pattern to get a list of relevant files
fileList = dir(filePattern);
if isempty(fileList)
error('ebFileLoopWrapper: Your file name pattern produces no results. WTF?');
end
% Check the handle
if ~isa(f,'function_handle')
error('ebFileLoopWrapper: You need to pass a function HANDLE, dude.');
end
% For loop over the filenames
for ii = 1:length(fileList)
fileName = fileList(ii).name;
f(fileName);
end
end