[][src]Struct async_std::fs::DirEntry

pub struct DirEntry { /* fields omitted */ }

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

impl DirEntryExt for DirEntry[src]

impl Debug for DirEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]