NAnt
![]() ![]() ![]() |
v0.90 |
Returns the number of whole days represented by the specified TimeSpan.
int timespan::get-days(value)
Name | Type | Description |
---|---|---|
value | timespan | A 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>