Jump to content

Recommended Posts

Posted

Hi, I have a folder where new builds are copied everyday. Now my task is "HOW TO FIND THE LATEST FILE in that folder?" Help!

Neil

Posted

  GAM said:

Hi, I have a folder where new builds are copied everyday. Now my task is "HOW TO FIND THE LATEST FILE in that folder?" Help!

You need _FileListToArray() and FileGetTime(). Exists another examples on forum, try to search.

Posted

Since the function is pretty easy to write, I made it for you.

#include <File.au3>

MsgBox(0, "", _FindLatest(@ScriptDir))

Func _FindLatest($dir)
    Local $latest[2]
    $files = _FileListToArray($dir, "*", 1)
    For $i = 1 To UBound($files) - 1
        If FileGetTime($files[$i], 1, 1) > $latest[0] Or $i = 1 Then
            $latest[0] = FileGetTime($files[$i], 1, 1)
            $latest[1] = $i
        EndIf
    Next
    Return $files[$latest[1]]
EndFunc  ;==>_FindLatest

:P

Broken link? PM me and I'll send you the file!

  • 3 years later...
Posted

  Quote

#include <File.au3>

MsgBox(0, "", _FindLatest(@ScriptDir))

Func _FindLatest($dir)
    Local $latest[2]
    $files = _FileListToArray($dir, "*", 1)
    For $i = 1 To UBound($files) - 1
        If FileGetTime($files[$i], 1, 1) > $latest[0] Or $i = 1 Then
            $latest[0] = FileGetTime($files[$i], 1, 1)
            $latest[1] = $i
        EndIf
    Next
    Return $files[$latest[1]]
EndFunc  ;==>_FindLatest

Your code saved me some time, but I'm having a bit of a problem with it...:

When I run the script from inside the folder I want to check this works like a charm, but once I add the exact same code into a script lying somewhere else and (ofc) changes the specified dir to a dir variable, the scrips just over and over gives me the same folder name! Even when I'm creating new folders into that same folder it will only give me the name of the (now) oldest folder and not the latest one.

So in short: Code works when run from a script inside the folder to check, but not when used from a script in a distant folder (and yes, the @ScriptDir has been replaced with a variable for the dir path).

Does anyone have an answer to this? ;)

Best regards,

zvvyt

  • Moderators
Posted

zvvyt,

I imagine that you need to add the full path to the filename when using FileGetTime so that it knows where to look. :)

FileGetTime($dir & "" & $files[$i], 1, 1)

Am I right? ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Shit .. I totally forgot about that! >__<'

You really eased my headache!

Once again, thanks a lot M23! ^__^

Best regards,

  • 6 years later...
Posted
  On 6/16/2012 at 2:30 PM, Melba23 said:

zvvyt,

 

I imagine that you need to add the full path to the filename when using FileGetTime so that it knows where to look. :)

 

FileGetTime($dir & "" & $files[$i], 1, 1)

Am I right? ;)

 

M23

Expand  

What is the $files variable doing? What should we initialize it to? How does the FileGetTime work?

Posted

What is $files variable doing? What should we initialize it to? How does _FileListToArray work here? Confused. Kindly help.

Posted
$files

Is the array for the file list

$files[0]

will be the total quantity of files

$files[1]

the first file, and so on only instead of numbers you have another variable that will increase in number so..there you go, loop though all files.

  Reveal hidden contents

IUIAutomation - Topic with framework and examples

Au3Record.exe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...