I'm working on a utility that will list files newest first, and marks files listed after a user designated time. What I have to date is basically a cut and paste of different parts of scripts I have found here and over the web. The problem I'm running into is that it stopped marking the files after the designated time. I've poked around but haven't gotten too far. Any advise and direction is greatly welcomed, and I also welcome thoughts and ideas on making everything from the programing its self to the user inputs and displays work and look better. Attached is a moddified array.au3 that I edited to make the script work, and 2 screen shots 1 of the user input and results I'm getting.
Go easy on me, the last time I did programming a mouse was still just a rodent.
Thank you all very much for your time!
73 de K3DLG
Derrick
#region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Res_Language=1033
#endregion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <Array.au3>
#include <Array123.au3>
#include <file.au3>
#include <GuiListView.au3>
#include <date.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <GuiStatusBar.au3>
;##############
;includes
;##############
#region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Last File Utility", 350, 300, 192, 122)
$Input1 = GUICtrlCreateInput("", 120, 20, 121, 24)
$Input2 = GUICtrlCreateInput("", 120, 70, 121, 24)
$Input3 = GUICtrlCreateInput("", 120, 130, 121, 24)
$Button1 = GUICtrlCreateButton("Continue", 250, 200, 75, 25)
$Label1 = GUICtrlCreateLabel("Job Name", 40, 20, 70, 20)
$Label2 = GUICtrlCreateLabel("Last File", 40, 70, 75, 20)
$Label3 = GUICtrlCreateLabel("AM or PM", 40, 130, 60, 20)
$StatusBar1 = _GUICtrlStatusBar_Create($Form1)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
While 1
$sName1 = GUICtrlRead($Input1)
$sName2 = GUICtrlRead($Input2)
$sName3 = GUICtrlRead($Input3)
$nMsg = GUIGetMsg()
Switch $nMsg
Case $Button1
$jobname = $sName1
$lasttime = $sName2
$ampm = $sName3
GUIDelete()
ExitLoop
EndSwitch
WEnd
;#####################################
;********NEED TO MAKE INPUTS FOR THESE
$jobname = $jobname
$lastpagetime = $lasttime & $ampm
;*************
;#################################
Func _Time_ConvertTo24($s_Str)
If Not StringRegExp($s_Str, "^(?i)\d+.*:.*\d+\s*[ap]m$") Then Return $s_Str
Local $aHold = StringRegExp($s_Str, "(\d+):(\d+)", 1), $sRtn, $sHour
If @error Then Return SetError(1)
;$aHold[0] = StringFormat("%02s", $aHold[0])
If StringRegExp($s_Str, "(?i)^.+pm$") Then
$sHour = $aHold[0]
$sHour = $sHour + 12
If $sHour = 24 Then $sHour = 0
Else
$sHour = $aHold[0]
If $sHour = 12 Then $sHour = 0
$sRtn = $sHour & $aHold[1]
EndIf
Return StringFormat("%02u", $sHour) & $aHold[1]
EndFunc ;==>_Time_ConvertTo24
$lastpage24 = _Time_ConvertTo24($lastpagetime)
$lthour = StringMid($lastpage24, 1, 2)
$ltmin = StringMid($lastpage24, 3, 2)
$nametest = StringMid($jobname, 1, 2)
$dayinfo = StringMid($jobname, 5, 2)
$driveletter = "p:\"
If $nametest = "pt" Then
$driveletter = "t:\"
EndIf
$r = fastwrapdir($driveletter & $jobname & "*.*")
$datefull = StringMid($jobname, 3, 4)
$datemonth = StringMid($jobname, 3, 2)
$dateday = StringMid($jobname, 5, 2)
$makedate = @YEAR & "/" & $datemonth & "/" & $dateday
$maketime = $lthour & ":" & $ltmin
$lastfiletime = $makedate & " " & $maketime & ":00"
Func fastwrapdir($patterns)
$result = ""
$pid = Run("cmd /cdir " & $patterns & " /B /S /A:H /A:S /A:-D", "", 0, 6)
While 1
$result &= StdoutRead($pid)
If @error Then ExitLoop
WEnd
$ar = StringSplit($result, @CRLF, 1)
$ar[0] -= 1
Return ($ar)
EndFunc ;==>fastwrapdir
Global $aArray = $r
Global $aArray2D[10][2]
ReDim $aArray2D[$aArray[0] + 1][8]
$aArray2D[0][0] = $aArray[0]
Global $number = 0
For $z = 1 To $r[0]
$t = FileGetTime($r[$z], 0)
$yyyymd = $t[1] & "/" & $t[2]
$hhmm = $t[3] & ":" & $t[4]
$datetime = $t[0] & "_" & $t[1] & "_" & $t[2] & "_" & $t[3] & ":" & $t[4]
$aArray2D[$z][4] = $datetime
$aArray2D[$z][0] = $aArray[$z]
$aArray2D[$z][1] = $yyyymd
;$aArray2D[$z][2] = $hhmm
$hour = $t[3]
$ampm = 'AM';
If $hour >= 12 Then
$ampm = 'PM';
If $hour > 12 Then
$hour = $hour - 12;
EndIf
ElseIf $hour = 0 Then
$hour = 12;
EndIf
$hhmm2 = $hour & ":" & $t[4] & " " & $ampm
$aArray2D[$z][2] = $hhmm2
$sRET = _DateAdd("n", -30, $lastfiletime)
$stimeadj = StringMid($sRET, 12, 5)
$sdateadj = StringMid($sRET, 9, 2)
$smonthadj = StringMid($sRET, 6, 2)
$syearadj = StringMid($sRET, 1, 4)
$dayinfoa = $sdateadj
If $datetime >= $syearadj & "_" & $smonthadj & "_" & "0"&$dayinfoa-1 & "_" & $stimeadj Then
$aArray2D[$z][3] = "*"
$number = $number + 1
EndIf
$aArray2D[0][3] = $number
Next
_ArraySort($aArray2D, 1, 1, "", 4)
_ArrayDisplay123($aArray2D)
NOTE: I corrected the Array file to the correct one I have been working with. Sorry if this caused any problems. results.pdf userinput.pdf Array123.au3