Re: Scanning for last modified date
Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance
Hi Jamie,
I suppose, the only thing to do is to insert an IF-Construct into your loop
through the subdirectories, so you can control the existence of 'notes.ini'.
If this file exists, it`s very simple to get the property _DateLastModified_
from the filesystem object.
If oFSO.FileExists(oSubDir.Path & "\notes.ini") Then
Set oFile = oFSO.GetFile(oSubDir.Path & "\notes.ini")
WScript.Echo oFile.DateLastModified
End If
HTH
lg Alex
.
Relevant Pages
- Re: Slope Compensation and Vodka
... > | IIRC its associated with the sampled-data nature of the overall ... > | loop, which the standard linear analysis conveniently ignores. ... the real circuit for a control loop analysis, ... It all seems to boil down to the "choice" of modulator transfer ... (sci.electronics.design) - Re: Exploring the FOPDT Model With a Parameter Sensitivity Study
... primary focus is on PID control and related architectures. ... PID loops and from 50 to over 1000 measurements. ... A control person seeking to tune a loop 'might' ... And I know my posts on this newsgroup announcing the publication of the ... (sci.engr.control) - Re: The Cascade Control Architecture - controlguru post
... performance are cascade control and feed forward with feedback trim. ... literally nest a secondary control loop inside a primary loop as ... you _cannot_ improve the disturbance ... (sci.engr.control) - RE: New to VBA, Search for hole in numeric value using string as a cri
... You are setting the control to true and never checking for it's ... Then loop through those looking for the gap in numbers. ... > Dim tcrNum As Integer ... > Dim tcrPull As Integer ... (microsoft.public.access.formscoding) - Re: question about thread scheduling
... still have problems with rescheduling. ... In essential, it is a control problem, and I must send a voltage to the ... If the NN run in a different thread as the control loop ... (microsoft.public.windowsce.platbuilder) |
|