pub struct FileType(_);
A structure representing a type of file with accessors for each file type. It is returned by Metadata::file_type
method.
impl FileType
[src]
fn is_dir(&self) -> bool
Test whether this file type represents a directory.
use std::fs; let metadata = fs::metadata("foo.txt")?; let file_type = metadata.file_type(); assert_eq!(file_type.is_dir(), false);
fn is_file(&self) -> bool
Test whether this file type represents a regular file.
use std::fs; let metadata = fs::metadata("foo.txt")?; let file_type = metadata.file_type(); assert_eq!(file_type.is_file(), true);
fn is_symlink(&self) -> bool
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.
use std::fs; let metadata = fs::symlink_metadata("foo.txt")?; let file_type = metadata.file_type(); assert_eq!(file_type.is_symlink(), false);
impl Copy for FileType
[src]
impl Clone for FileType
[src]
fn clone(&self) -> FileType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq for FileType
[src]
fn eq(&self, __arg_0: &FileType) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FileType) -> bool
This method tests for !=
.
impl Eq for FileType
[src]
impl Hash for FileType
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
Feeds a slice of this type into the state provided.
impl Debug for FileType
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter.
impl FileTypeExt for FileType
fn is_block_device(&self) -> bool
Returns whether this file type is a block device.
fn is_char_device(&self) -> bool
Returns whether this file type is a char device.
fn is_fifo(&self) -> bool
Returns whether this file type is a fifo.
fn is_socket(&self) -> bool
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