pub trait FileTypeExt {
fn is_block_device(&self) -> bool;
fn is_char_device(&self) -> bool;
fn is_fifo(&self) -> bool;
fn is_socket(&self) -> bool;
}
Add support for special unix types (block/char device, fifo and socket).
fn is_block_device(&self) -> boolReturns whether this file type is a block device.
use std::fs;
use std::os::unix::fs::FileTypeExt;
let meta = fs::metadata("block_device_file")?;
let file_type = meta.file_type();
assert!(file_type.is_block_device()); fn is_char_device(&self) -> boolReturns whether this file type is a char device.
use std::fs;
use std::os::unix::fs::FileTypeExt;
let meta = fs::metadata("char_device_file")?;
let file_type = meta.file_type();
assert!(file_type.is_char_device()); fn is_fifo(&self) -> boolReturns whether this file type is a fifo.
use std::fs;
use std::os::unix::fs::FileTypeExt;
let meta = fs::metadata("fifo_file")?;
let file_type = meta.file_type();
assert!(file_type.is_fifo()); fn is_socket(&self) -> boolReturns whether this file type is a socket.
use std::fs;
use std::os::unix::fs::FileTypeExt;
let meta = fs::metadata("unix.socket")?;
let file_type = meta.file_type();
assert!(file_type.is_socket()); impl FileTypeExt for FileType
© 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.FileTypeExt.html