[−][src]Struct async_std::fs::DirEntry
An entry inside a directory.
An instance of DirEntry represents an entry inside a directory on the filesystem. Each entry
carriers additional information like the full path or metadata.
This type is an async version of std::fs::DirEntry.
Methods
impl DirEntry[src]
pub fn path(&self) -> PathBuf[src]
Returns the full path to this entry.
The full path is created by joining the original path passed to read_dir with the name
of this entry.
Examples
use async_std::fs; use async_std::prelude::*; let mut dir = fs::read_dir(".").await?; while let Some(entry) = dir.next().await { let entry = entry?; println!("{:?}", entry.path()); }
pub async fn metadata<'_>(&'_ self) -> Result<Metadata>[src]
Returns the metadata for this entry.
This function will not traverse symlinks if this entry points at a symlink.
Examples
use async_std::fs; use async_std::prelude::*; let mut dir = fs::read_dir(".").await?; while let Some(entry) = dir.next().await { let entry = entry?; println!("{:?}", entry.metadata().await?); }
pub async fn file_type<'_>(&'_ self) -> Result<FileType>[src]
Returns the file type for this entry.
This function will not traverse symlinks if this entry points at a symlink.
Examples
use async_std::fs; use async_std::prelude::*; let mut dir = fs::read_dir(".").await?; while let Some(entry) = dir.next().await { let entry = entry?; println!("{:?}", entry.file_type().await?); }
pub fn file_name(&self) -> OsString[src]
Returns the bare name of this entry without the leading path.
Examples
use async_std::fs; use async_std::prelude::*; let mut dir = fs::read_dir(".").await?; while let Some(entry) = dir.next().await { let entry = entry?; println!("{:?}", entry.file_name()); }
Trait Implementations
Auto Trait Implementations
impl Sync for DirEntry
impl Send for DirEntry
impl Unpin for DirEntry
impl RefUnwindSafe for DirEntry
impl UnwindSafe for DirEntry
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,