| 320 | } |
| 321 | |
| 322 | Time FileNode::getModifiedTime() |
| 323 | { |
| 324 | Attributes attrs; |
| 325 | |
| 326 | bool success = getAttributes( &attrs ); |
| 327 | |
| 328 | if ( !success ) |
| 329 | return Time(); |
| 330 | |
| 331 | return attrs.mtime; |
| 332 | } |
| 333 | |
| 334 | Time FileNode::getCreatedTime() |
| 335 | { |
no test coverage detected