Struct std::fs::FileType1.1.0 [] [src]

pub struct FileType(_);

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

Methods

impl FileType
[src]

[src]

Test whether this file type represents a directory.

Examples

use std::fs;

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

assert_eq!(file_type.is_dir(), false);Run

[src]

Test whether this file type represents a regular file.

Examples

use std::fs;

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

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

Test whether this file type represents a symbolic link.

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

Examples

use std::fs;

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

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

Trait Implementations

impl Copy for FileType
[src]

impl Clone for FileType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FileType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for FileType
[src]

impl Hash for FileType
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for FileType
[src]

[src]

Formats the value using the given formatter. Read more

impl FileTypeExt for FileType
1.5.0
[src]

[src]

This is supported on Unix only.

Returns whether this file type is a block device. Read more

[src]

This is supported on Unix only.

Returns whether this file type is a char device. Read more

[src]

This is supported on Unix only.

Returns whether this file type is a fifo. Read more

[src]

This is supported on Unix only.

Returns whether this file type is a socket. Read more