Struct std::fs::FileType

1.1.0 · source ·
pub struct FileType(_);
Expand description

表示文件类型的结构体,每个文件类型都有访问器。 通过 Metadata::file_type 方法返回。

Implementations§

source§

impl FileType

source

pub fn is_dir(&self) -> bool

测试此文件类型是否代表目录。 结果与 is_fileis_symlink 的结果互斥; 这些测试只能通过零或其中一项。

Examples
fn main() -> std::io::Result<()> {
    use std::fs;

    let metadata = fs::metadata("foo.txt")?;
    let file_type = metadata.file_type();

    assert_eq!(file_type.is_dir(), false);
    Ok(())
}
Run
source

pub fn is_file(&self) -> bool

测试此文件类型是否代表常规文件。 结果与 is_diris_symlink 的结果互斥; 这些测试只能通过零或其中一项。

当目标只是读取 (或写入) 源时,可以读取 (或写入) 最可靠的测试源方法是打开它。 例如,仅使用 is_file 才能中断类似 Unix 的系统上的工作流,例如 diff <( prog_a )。 有关更多信息,请参见 File::openOpenOptions::open

Examples
fn main() -> std::io::Result<()> {
    use std::fs;

    let metadata = fs::metadata("foo.txt")?;
    let file_type = metadata.file_type();

    assert_eq!(file_type.is_file(), true);
    Ok(())
}
Run

测试此文件类型是否代表符号链接。 结果与 is_diris_file 的结果互斥; 这些测试只能通过零或其中一项。

需要使用 fs::symlink_metadata 函数而不是 fs::metadata 函数来检索底层 Metadata 结构。 fs::metadata 函数遵循符号链接,因此 is_symlink 将始终为目标文件返回 false

Examples
use std::fs;

fn main() -> std::io::Result<()> {
    let metadata = fs::symlink_metadata("foo.txt")?;
    let file_type = metadata.file_type();

    assert_eq!(file_type.is_symlink(), false);
    Ok(())
}
Run

Trait Implementations§

source§

impl Clone for FileType

source§

fn clone(&self) -> FileType

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for FileType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

使用给定的格式化程序格式化该值。 Read more
1.64.0 · source§

impl FileTypeExt for FileType

Available on Windows only.
如果此文件类型是也是目录的符号链接,则返回 true
如果此文件类型是也是文件的符号链接,则返回 true
source§

impl FileTypeExt for FileType

Available on WASI only.
source§

fn is_block_device(&self) -> bool

🔬This is a nightly-only experimental API. (wasi_ext #71213)
如果此文件类型是块设备,则返回 true
source§

fn is_char_device(&self) -> bool

🔬This is a nightly-only experimental API. (wasi_ext #71213)
如果此文件类型是字符设备,则返回 true
source§

fn is_socket_dgram(&self) -> bool

🔬This is a nightly-only experimental API. (wasi_ext #71213)
如果此文件类型是套接字数据报,则返回 true
source§

fn is_socket_stream(&self) -> bool

🔬This is a nightly-only experimental API. (wasi_ext #71213)
如果此文件类型是套接字流,则返回 true
source§

fn is_socket(&self) -> bool

🔬This is a nightly-only experimental API. (wasi_ext #71213)
如果此文件类型是任何类型的套接字,则返回 true
1.5.0 · source§

impl FileTypeExt for FileType

Available on Unix only.
source§

fn is_block_device(&self) -> bool

如果此文件类型是块设备,则返回 trueRead more
source§

fn is_char_device(&self) -> bool

如果此文件类型是 char 设备,则返回 trueRead more
source§

fn is_fifo(&self) -> bool

如果此文件类型为 fifo,则返回 trueRead more
source§

fn is_socket(&self) -> bool

如果此文件类型是套接字,则返回 trueRead more
source§

impl Hash for FileType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

将该值输入给定的 HasherRead more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

将这种类型的切片送入给定的 Hasher 中。 Read more
source§

impl PartialEq<FileType> for FileType

source§

fn eq(&self, other: &FileType) -> bool

此方法测试 selfother 值是否相等,并由 == 使用。
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
source§

impl Copy for FileType

source§

impl Eq for FileType

source§

impl StructuralEq for FileType

source§

impl StructuralPartialEq for FileType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。