Hi, I am fetching certain files from the directory say “C:\data..”. I want to fetch the all the files that are modified on or after the specified date. Is it possible to acheive it through lotus script???
Regards,
Shankar.
Hi, I am fetching certain files from the directory say “C:\data..”. I want to fetch the all the files that are modified on or after the specified date. Is it possible to acheive it through lotus script???
Regards,
Shankar.
Subject: Modification date of a file
Look in the help file under FileDateTime function.
Subject: RE: Modification date of a file
Thanks for your response Dave. Actually I have to reframe the question, in shared folder i need to fetch the files. File names wourld “*030208.xls”, “*030308.xls” where * can be any text. Now if I want to fetch files with “*030208.xls” alone, how can it be done in lotuscript? Pls note that there are more than 1000 files may be present in the folder.
Subject: RE: Modification date of a file
Simple enough. Get the list of files using the Dir function and store them in an array (consult the help file for specifics on the Dir function). Once you have the array of file names it is simple enuogh to iterate through them all looking for the ones that you want.