MATLAB: Reading the New Added Files in Folder

inputread data

I have a Folder which contains many JPG-Files and continuously new JPG-Files are added in the same Folder. How can I read the new added Files without Reading the old ones again? Thanks.

Best Answer

If you use matlab's dir command to list files you could keep the creation date-time of the most recent file you've read - and then at next read opportunity only read files that are created after that time. Should be pretty straightforward from there...
Related Question