/*********************
* Set $cachefolder in onBeforeMainStart() to the folder to use to store data (it must end in a backslash)
*********************/
function onBeforeMainStart() {
$cachefolder='E:\\env\\htmlval\\cache\\';
}
function onTargetCanAdd() {
if !$otca_add return;
$cachefile=$cachefolder+replaceRegEx($otca_target,'[^a-zA-Z0-9\.\-\_]','_');
$cfinfo=getFileInfo($cachefile,1);
if $cfinfo.isSet() {
$tinfo=getFileInfo($otca_target,1);
if $tinfo.isSet() {
$otca_add=false;
if $tinfo.lastwrite_year>$cfinfo.lastwrite_year { $otca_add=true; }
else { if $tinfo.lastwrite_year==$cfinfo.lastwrite_year {
if $tinfo.lastwrite_month>$cfinfo.lastwrite_month { $otca_add=true; }
else { if $tinfo.lastwrite_month==$cfinfo.lastwrite_month {
if $tinfo.lastwrite_day>$cfinfo.lastwrite_day { $otca_add=true; }
else { if $tinfo.lastwrite_day==$cfinfo.lastwrite_day {
if $tinfo.lastwrite_hour>$cfinfo.lastwrite_hour { $otca_add=true; }
else { if $tinfo.lastwrite_hour==$cfinfo.lastwrite_hour {
if $tinfo.lastwrite_min>$cfinfo.lastwrite_min { $otca_add=true; }
}}}}}}}}
}
}
}
function onTargetProcessed() {
$cachefile=$cachefolder+replaceRegEx(getValueString(5),'[^a-zA-Z0-9\.\-\_]','_');
if getValueInt(1) || getValueInt(2) {
deleteFile($cachefile);
}
else {
writeFile($cachefile,'',2);
}
}