Struct fs2::FsStats [−][src]
pub struct FsStats { /* fields omitted */ }
FsStats
contains some common stats about a file system.
Implementations
impl FsStats
[src]
impl FsStats
[src]pub fn free_space(&self) -> u64
[src]
Returns the number of free bytes in the file system containing the provided path.
pub fn available_space(&self) -> u64
[src]
Returns the available space in bytes to non-priveleged users in the file system containing the provided path.
pub fn total_space(&self) -> u64
[src]
Returns the total space in bytes in the file system containing the provided path.
pub fn allocation_granularity(&self) -> u64
[src]
Returns the filesystem’s disk space allocation granularity in bytes. The provided path may be for any file in the filesystem.
On Posix, this is equivalent to the filesystem’s block size. On Windows, this is equivalent to the filesystem’s cluster size.