[][src]Struct async_fs::DirEntry

pub struct DirEntry(_);

An entry in a directory.

A stream of entries in a directory is returned by read_dir().

For Unix-specific options, import the DirEntryExt trait.

Implementations

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 futures_lite::stream::StreamExt;

let mut dir = async_fs::read_dir(".").await?;

while let Some(res) = dir.next().await {
    let entry = res?;
    println!("{:?}", entry.path());
}

pub async fn metadata<'_>(&'_ self) -> Result<Metadata>[src]

Reads the metadata for this entry.

This function will traverse symbolic links to read the metadata.

If you want to read metadata without following symbolic links, use symlink_metadata() instead.

Errors

An error will be returned in the following situations:

  • This entry does not point to an existing file or directory anymore.
  • The current process lacks permissions to read the metadata.
  • Some other I/O error occurred.

Examples

use futures_lite::stream::StreamExt;

let mut dir = async_fs::read_dir(".").await?;

while let Some(res) = dir.next().await {
    let entry = res?;
    println!("{:?}", entry.metadata().await?);
}

pub async fn file_type<'_>(&'_ self) -> Result<FileType>[src]

Reads the file type for this entry.

This function will not traverse symbolic links if this entry points at one.

If you want to read metadata with following symbolic links, use metadata() instead.

Errors

An error will be returned in the following situations:

  • This entry does not point to an existing file or directory anymore.
  • The current process lacks permissions to read this entry's metadata.
  • Some other I/O error occurred.

Examples

use futures_lite::stream::StreamExt;

let mut dir = async_fs::read_dir(".").await?;

while let Some(res) = dir.next().await {
    let entry = res?;
    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 futures_lite::stream::StreamExt;

let mut dir = async_fs::read_dir(".").await?;

while let Some(res) = dir.next().await {
    let entry = res?;
    println!("{}", entry.file_name().to_string_lossy());
}

Trait Implementations

impl Clone for DirEntry[src]

impl Debug for DirEntry[src]

impl DirEntryExt for DirEntry[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.