Conditional FILE statements...
Is there any way to include ONLY files newer than a (potentially hardcoded) date? I don't mean during install time (where the setOverwrite = ifNewer does the same thing) but during compile time.
Actually, coming from C++ I really miss something like:
File /r [Mydir]\*.* onCondition=foo();
bool Function foo
{
if ( FileLocalTime > FixedDate )
return true;
else
return false;
}
Would work for string comarisons and who knows what...
Kjella