Hi -
I'm looking for a workflow that looks at the last modified date of a file and notifies me by email if it is the same date as the last time the workflow was ran.
I probably haven't explained that very well....
I have a file on a network drive that should be updated every week. I need a fail safe that notifies me if that file hasn't been updated.
Any ideas?
Thanks
RDF
Hi @RDF25087 ,
Directory tool gives you the file information of a directory.
If you run the workflow every day, you can filter the file with the Last Write Time is after yesterday.
Then you can make it to a Table and send as Email.
Workflow
Formula in Filter tool
[LastWriteTime] >= DateTimeAdd(DateTimeNow(),-1,"day")
Table output
I hope this may be of some help.