Jump to content

Find most recently created or modified image(file)


Recommended Posts

Posted

Hi everyone, I have a question: Suppose there's a folder containing a large number of PNG images — say, around 10,000 files. What's the best way to get the name of the most recently created or modified image in that folder? Is there a faster method?

Posted

Have you tried this? The `last mod` output should hopefully give you the timestamp of the last modification, and it would then be pretty simple to find the latest.

I have no idea what the performance of this would be if you loop over 10000 files. That is something you would just have to try.

 

image.png.8ae2348bb0515a56018e9a47050dd8c9.png

Posted
3 hours ago, Neil Pate said:

Done some simple testing.

On a directory containing 838 files it took 60 ms.

That's how I'd do it.  Then combine that with the Foreign Key Sort from my Array package, putting the Time Stamps into the Keys, then paths into the Arrays, and it will sort the paths from oldest to newest.  Reverse the array and index at 0, or use Delete From Array to get the last element, which would be the newest file.

ForeignKeySort.png.fd9ab39f83ed774e23f35816a3682a20.png

Posted
38 minutes ago, dadreamer said:

In addition to the LV native method, there are options with .NET and command prompt: Get Recently Modified Files.

If you are in a Windows environment, and have many files to process, this is probably going to be faster.  There probably are several factors in determining when doing this in .NET is the better solution.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.