Reserves space for this file in the filesystem.
impl File {
fn reserve<R>(&self, range: R) -> Result<(), Errno>
where R: BoundedRange<u64>,
}| Name | Description |
|---|---|
| range | The range that should be available for writing. |
Further writes in the specified range are guaranteed not to fail because of a lack of storage capacity.