pub struct FileType(/* private fields */);
A structure representing a type of file with accessors for each file type. It is returned by Metadata::file_type method.
impl FileType
pub fn is_dir(&self) -> bool
Tests whether this file type represents a directory. The result is mutually exclusive to the results of is_file and is_symlink; only zero or one of these tests may pass.
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(())
}pub fn is_file(&self) -> bool
Tests whether this file type represents a regular file. The result is mutually exclusive to the results of is_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 or OpenOptions::open for more information.
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(())
}pub fn is_symlink(&self) -> bool
Tests whether this file type represents a symbolic link. The result is mutually exclusive to the results of is_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 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;
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(())
}impl Clone for FileType
fn clone(&self) -> FileType
fn clone_from(&mut self, source: &Self)
source. Read more
impl Debug for FileType
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl FileTypeExt for FileTypeAvailable on Unix only.
fn is_block_device(&self) -> bool
true if this file type is a block device. Read more
fn is_char_device(&self) -> bool
true if this file type is a char device. Read more
fn is_fifo(&self) -> bool
true if this file type is a fifo. Read more
fn is_socket(&self) -> bool
true if this file type is a socket. Read more
impl FileTypeExt for FileTypeAvailable on WASI only.
fn is_block_device(&self) -> bool
wasi_ext #71213)
true if this file type is a block device.fn is_char_device(&self) -> bool
wasi_ext #71213)
true if this file type is a character device.fn is_socket_dgram(&self) -> bool
wasi_ext #71213)
true if this file type is a socket datagram.fn is_socket_stream(&self) -> bool
wasi_ext #71213)
true if this file type is a socket stream.fn is_socket(&self) -> bool
wasi_ext #71213)
true if this file type is any type of socket.impl FileTypeExt for FileTypeAvailable on Windows only.
fn is_symlink_dir(&self) -> bool
true if this file type is a symbolic link that is also a directory.fn is_symlink_file(&self) -> bool
true if this file type is a symbolic link that is also a file.impl Hash for FileType
fn hash<__H: Hasher>(&self, state: &mut __H)
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Self: Sized,impl PartialEq for FileType
fn eq(&self, other: &FileType) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &Rhs) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl Copy for FileType
impl Eq for FileType
impl StructuralPartialEq for FileType
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
impl<T> Any for Twhere
T: 'static + ?Sized,impl<T> Borrow<T> for Twhere
T: ?Sized,impl<T> BorrowMut<T> for Twhere
T: ?Sized,impl<T> CloneToUninit for Twhere
T: Clone,unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit #126799)
impl<T> From<T> for T
fn from(t: T) -> T
Returns the argument unchanged.
impl<T, U> Into<U> for Twhere
U: From<T>,fn into(self) -> U
Calls U::from(self).
That is, this conversion is whatever the implementation of From<T> for U chooses to do.
impl<T> ToOwned for Twhere
T: Clone,type Owned = T
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)
impl<T, U> TryFrom<U> for Twhere
U: Into<T>,type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
© 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