Detect New File in a Directory
Show older comments
Hi All,
Last time when I google this question, I actually found a function that does what I need, but I couldn't find it this time.
Basically what I need is to monitor a directory for any new files. If there are new files, I will read the files in and continue to monitor for new files.
Any help will be greatly appreciated!
Thank you,
Lynniz
2 Comments
Walter Roberson
on 13 Oct 2011
The mechanisms for doing this are operating-system specific. Please indicate which OS you are using.
lynniz
on 14 Oct 2011
Accepted Answer
More Answers (2)
Dimitrios Patikas
on 27 Aug 2022
Edited: Dimitrios Patikas
on 27 Aug 2022
To avoid looping over and over again, you may use a timer function and keep it working on the background unless younstom the timer. An example to get always the newest file:
t = timer;
t.TimerFcn = @timerFunc;
t.Period = 0.6; % how often you want to check
t.ExecutionMode = 'fixedRate';
t.start % use t.stop to stop the timer
function timerFunc(~,~)
persistent CurrentNewest
Path = 'A/path/you/want/to/keep/track';
CurrentNewest = 'NewestFilename.new'
ListFiles = dir(Path);
ListFiles = ListFiles(~[ListFiles.isdir]);
[~, idx] = sort([ListFiles.datenum]);
newest = ListFiles(idx(end));
if ~strcmp(newest.name, CurrentNewest)
disp(['The newest file is now: ', newest.name])
CurrentNewest = newest.name;
end
end
Walter Roberson
on 27 Aug 2022
0 votes
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!