Returns the number of whole days represented by the specified TimeSpan.
The number of whole days represented by the given TimeSpan.
Remove all files that have not been modified in the last 7 days from directory "binaries".
<foreach item="File" in="binaries" property="filename"> <if test="${timespan::get-days(datetime::now() - file::get-last-write-time(filename)) >= 7}"> <delete file="${filename}" /> </if> </foreach>
TimeSpanFunctions Class | NAnt.Core.Functions Namespace