Hello,
I need to routinely look in a fixed set of directories to find if .html files have been updated in the last 30 days. The challenging part of this (to me) is that I need to test for this via the files <meta> tag "pubdate" value then build of list of files that meet this criteria.
Example myfile.html:
Any suggestions on tools or code to do this?
Thanks,
Michael42
I need to routinely look in a fixed set of directories to find if .html files have been updated in the last 30 days. The challenging part of this (to me) is that I need to test for this via the files <meta> tag "pubdate" value then build of list of files that meet this criteria.
Example myfile.html:
Code:
<html>
<head>
<title></title>
[b]<meta name="pubdate" content="20041215">[/b]
</head>
<body>
<h1>My File</h1>
</body>
</html>
Any suggestions on tools or code to do this?
Thanks,
Michael42