So I'm trying to create a program that searches for the most recently updated file in a directory. My initial hope was that a command like
file_array = FILE_INFO(file_path+'\*.dat')
would create an array of all of the files in the directory, and then
edit_time = file_array.mtime
would give me an array of all of the mtimes, from which I could get the max mtime, aka the most recently updated file. As far as I can tell, though, FILE_INFO
(and FSTAT
) does not seem to be able to handle multiple files at the same time.
This program is supposed to be an automated procedure, and files are constantly being updated and added as data is pushed onto the computer. So hard coding in anything more specific than the parent directory is not a viable solution.
So what I need is an alternative to FILE_INFO
that can handle multiple files, or a loop procedure that can step through the directory, looking at every file, without first knowing the file names.
How about something like this:
Call it like this to find the newest regular file in a given directory:
Depending on what you are doing,
FOLDERWATCH
(introduced in IDL 8.4) might be useful to you.