The size in bytes, if available Only regular files are guaranteed to have a size.
| 81 | /// |
| 82 | /// Only regular files are guaranteed to have a size. |
| 83 | int64_t size() const { return size_; } |
| 84 | void set_size(int64_t size) { size_ = size; } |
| 85 | |
| 86 | /// The file extension (excluding the dot) |
no outgoing calls