| 262 | } |
| 263 | |
| 264 | Time FileNode::getModifiedTime() |
| 265 | { |
| 266 | Attributes attrs; |
| 267 | |
| 268 | bool success = getAttributes( &attrs ); |
| 269 | |
| 270 | if ( !success ) |
| 271 | return Time(); |
| 272 | |
| 273 | return attrs.mtime; |
| 274 | } |
| 275 | |
| 276 | U64 FileNode::getSize() |
| 277 | { |
no test coverage detected