| NAnt  Help  Function Reference  timespan::get-days | v0.92-rc1 | 
[This is preliminary documentation and subject to change.]
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>