[−][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 Unpin for DirEntry
impl Sync for DirEntry
impl Send for DirEntry
impl UnwindSafe for DirEntry
impl RefUnwindSafe for DirEntry
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> From<T> for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,