std::fs::FileType

Struct std::fs::FileType

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]

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);

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);

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);

Trait Implementations

impl Copy for FileType [src]

impl Clone for FileType [src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FileType [src]

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

This method tests for !=.

impl Eq for FileType [src]

impl Hash for FileType [src]

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

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

impl Debug for FileType [src]

Formats the value using the given formatter.

impl FileTypeExt for FileType
1.5.0
[src]

Returns whether this file type is a block device.

Returns whether this file type is a char device.

Returns whether this file type is a fifo.

Returns whether this file type is a socket.

© 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/fs/struct.FileType.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部