Hi,
Depending on time zone, the code bellow on UnixFileParser.cs may cause some strange issues:
if (lastModified > DateTime.Now)
{
lastModified = lastModified.AddYears(-1);
}
I changed the if in my local copy of the lib to:
if (lastModified > DateTime.Now.AddDays(2))
... avoiding time zone issues. I suggest something like this to be in the original source or some way to dinamicaly configure this on the class.
Herbert