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