Skip to content
Snippets Groups Projects

Dev/filesep

Merged Lemmer, Jan requested to merge dev/filesep into development
4 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
1
@@ -96,7 +96,7 @@ switch options.Method
currentPath = fullfile(storPath);
%list all files
fList = dir(fullfile(storPath,DataFolderName, '**\*.*'));
fList = dir(fullfile(storPath,DataFolderName, ['**',filesep,'*.*']));
%get list of files and folders in any subfolder
fList = fList(~[fList.isdir]); %remove folders from list
fList = struct2table(fList);
Loading