pub trait MetadataExt {
fn dev(&self) -> u64;
fn ino(&self) -> u64;
fn mode(&self) -> u32;
fn nlink(&self) -> u64;
fn uid(&self) -> u32;
fn gid(&self) -> u32;
fn rdev(&self) -> u64;
fn size(&self) -> u64;
fn atime(&self) -> i64;
fn atime_nsec(&self) -> i64;
fn mtime(&self) -> i64;
fn mtime_nsec(&self) -> i64;
fn ctime(&self) -> i64;
fn ctime_nsec(&self) -> i64;
fn blksize(&self) -> u64;
fn blocks(&self) -> u64;
}
fn dev(&self) -> u64Returns the ID of the device containing the file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let dev_id = meta.dev(); fn ino(&self) -> u64Returns the inode number.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let inode = meta.ino(); fn mode(&self) -> u32Returns the rights applied to this file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let mode = meta.mode();
let user_has_write_access = mode & 0o200;
let user_has_read_write_access = mode & 0o600;
let group_has_read_access = mode & 0o040;
let others_have_exec_access = mode & 0o001; fn nlink(&self) -> u64Returns the number of hard links pointing to this file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let nb_hard_links = meta.nlink(); fn uid(&self) -> u32Returns the user ID of the owner of this file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let user_id = meta.uid(); fn gid(&self) -> u32Returns the group ID of the owner of this file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let group_id = meta.gid(); fn rdev(&self) -> u64Returns the device ID of this file (if it is a special one).
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let device_id = meta.rdev(); fn size(&self) -> u64Returns the total size of this file in bytes.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let file_size = meta.size(); fn atime(&self) -> i64Returns the time of the last access to the file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let last_access_time = meta.atime(); fn atime_nsec(&self) -> i64Returns the time of the last access to the file in nanoseconds.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let nano_last_access_time = meta.atime_nsec(); fn mtime(&self) -> i64Returns the time of the last modification of the file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let last_modification_time = meta.mtime(); fn mtime_nsec(&self) -> i64Returns the time of the last modification of the file in nanoseconds.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let nano_last_modification_time = meta.mtime_nsec(); fn ctime(&self) -> i64Returns the time of the last status change of the file.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let last_status_change_time = meta.ctime(); fn ctime_nsec(&self) -> i64Returns the time of the last status change of the file in nanoseconds.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let nano_last_status_change_time = meta.ctime_nsec(); fn blksize(&self) -> u64Returns the blocksize for filesystem I/O.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let blocksize = meta.blksize(); fn blocks(&self) -> u64Returns the number of blocks allocated to the file, in 512-byte units.
Please note that this may be smaller than st_size / 512 when the file has holes.
use std::fs;
use std::os::unix::fs::MetadataExt;
let meta = fs::metadata("some_file")?;
let blocks = meta.blocks(); impl MetadataExt for Metadata
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/fs/trait.MetadataExt.html