Unfortunately, TeleFlow does not have a Step or Run Basic function you can use to get this information. Although, that is an excellent suggestion for future improvements.
I can offer a couple of suggestions you can use as a work-around.
Firstly, you could create a .DLL file in C/C++ (or some other language) that will accept a file name as a parameter and pass back the date/time stamp. Consult the TeleFlow Help under "DLL Function Step" for more information.
Secondly, you can use a trick we use here in our application development: include the latest date/time information in the file name. For example, if your file is FAX.TXT, you would instead name the file FAX-20080129-1035.TXT. To make it easy (possible) to break the date and time information out of your file name, it is best to make all the file names consistent, and break the "sections" of the file name with a special character. We use the dash, '-', character). The TeleFlow Parse Step has a feature to parse for a particular piece of text in a delimited string. If the above file name is in a variable called @MYFILE, then parse @MYFILE for Delimiting string "-", for occurrence # 2, would give you the date; ie: "20080129".
Of course, the second suggestion only works if you have control over the file creation process.
I hope this helps.
|