G
Guest
I have a button on my form that runs this;
strFileName = "EXTRACT.TXT"
Set fs = Application.FileSearch
With fs
.LookIn = strSourceLocation
.FileName = strFileName
'JES-06/05/07 If there is an existing file then......
If .Execute > 0 Then
' Go somewhere and determine file Create and Modify Dates
Now that I have verified the existence of the file I need to know its'
Create and Modified date. How do I go about this ?
strFileName = "EXTRACT.TXT"
Set fs = Application.FileSearch
With fs
.LookIn = strSourceLocation
.FileName = strFileName
'JES-06/05/07 If there is an existing file then......
If .Execute > 0 Then
' Go somewhere and determine file Create and Modify Dates
Now that I have verified the existence of the file I need to know its'
Create and Modified date. How do I go about this ?