I was able to come up with a solution: Perhaps it will help others.
'------------------- Billie Hawkins ---------------------
'------------------- Check Files VBS ---------------------
'Dim ShowFolderList(folderspec)
Set oFSO = CreateObject("Scripting.FileSystemObject")
Dim folderspec
Dim fs, f, f1, fc, s
folderspec = "C:\Users\"
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFolder(folderspec)
Set fc = f.SubFolders
For Each f1 in fc
s = s & f1.name
's = s & vbCrLf
sPath = "C:\Users\" & f1.name & "\FromCustomer"
'wscript.echo sPath
Set oFolder = oFSO.GetFolder(sPath)
On Error Resume Next
Set oFiles = oFolder.Files
If oFiles.Count > 0 Then
' Enumerate the files in the folder looking for files updated
' within the last xx minutes. If such a file is found, exit the loop.
bolFileIsNewEnough = False ' init value
For Each oFile In oFiles
On Error Resume Next
dFileModDate = oFile.DateLastModified
If Err.Number = 0 Then
If DateDiff("n", dFileModDate, Now) < 15 Then
bolFileIsNewEnough = True
Exit For
End If
End If
Next
On Error Goto 0
If Not bolFileIsNewEnough Then
Set objEmail = CreateObject("CDO.Message")
objEmail.From = "File-Alert@msbinfo.com"
objEmail.To = "billie.hawkins@email.com"
objEmail.Subject = "Error: Files sitting over 15 minutes. "
objEmail.Textbody = sPath & " has files older than 15 Min." & VBCRLF & " Please check."
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "my.smtp.com"
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
objEmail.Configuration.Fields.Update
objEmail.Send
End if
Else
'WScript.Echo "Directory is empty"
End If
Next
'--------------------Billie Check Files VBS----------------------