Retrieves a list of all files within a directory Syntax: fileList = getAllFiles(dirName) Inputs: dirPath - The relative or full path of the directory to recursivley search. Outputs: fileList - A cell array list of the full path for each file found. Example: searchPath = [matlabroot filesep 'examples']; files = getAllFiles(searchPath); Author: Jacob Donley University of Wollongong Email: jrd089@uowmail.edu.au Date: 22 January 2015 Revision: 0.1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%