FileType in std::fs - Rust (original) (raw)

Struct FileType

1.1.0 · Source

pub struct FileType(/* private fields */);

Expand description

A structure representing a type of file with accessors for each file type. It is returned by Metadata::file_type method.

Source§

1.1.0 · Source

Tests whether this file type represents a directory. The result is mutually exclusive to the results ofis_file and is_symlink; only zero or one of these tests may pass.

§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(())
}

1.1.0 · Source

Tests whether this file type represents a regular file. The result is mutually exclusive to the results ofis_dir and is_symlink; only zero or one of these tests may pass.

When the goal is simply to read from (or write to) the source, the most reliable way to test the source can be read (or written to) is to open it. Only using is_file can break workflows like diff <( prog_a ) on a Unix-like system for example. See File::open orOpenOptions::open for more information.

§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(())
}

1.1.0 · Source

Tests whether this file type represents a symbolic link. The result is mutually exclusive to the results ofis_dir and is_file; only zero or one of these tests may pass.

The underlying Metadata struct needs to be retrieved with the fs::symlink_metadata function and not thefs::metadata function. The fs::metadata function follows symbolic links, so is_symlink would always return false for the target file.

§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(())
}

1.1.0 · Source§

1.16.0 · Source§

1.5.0 · Source§

Available on Unix only.

Source§

Available on WASI only.

Source§

🔬This is a nightly-only experimental API. (wasi_ext #71213)

Returns true if this file type is a block device.

Source§

🔬This is a nightly-only experimental API. (wasi_ext #71213)

Returns true if this file type is a character device.

Source§

🔬This is a nightly-only experimental API. (wasi_ext #71213)

Returns true if this file type is a socket datagram.

Source§

🔬This is a nightly-only experimental API. (wasi_ext #71213)

Returns true if this file type is a socket stream.

Source§

🔬This is a nightly-only experimental API. (wasi_ext #71213)

Returns true if this file type is any type of socket.

1.64.0 · Source§

Available on Windows only.

Source§

Returns true if this file type is a symbolic link that is also a directory.

Source§

Returns true if this file type is a symbolic link that is also a file.

1.1.0 · Source§

1.1.0 · Source§

Source§

Tests for self and other values to be equal, and is used by ==.

1.0.0 · Source§

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

1.1.0 · Source§

1.1.0 · Source§

1.1.0 · Source§

§

§

§

§

§

§