Struct async_std::fs::DirEntry [−][src]
An entry in a directory.
A stream of entries in a directory is returned by read_dir
.
This type is an async version of std::fs::DirEntry
.
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 async_std::fs; use async_std::prelude::*; let mut dir = 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 async_std::fs; use async_std::prelude::*; let mut dir = 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 async_std::fs; use async_std::prelude::*; let mut dir = 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 async_std::fs; use async_std::prelude::*; let mut dir = 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]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for DirEntry
[src]
impl DirEntryExt for DirEntry
[src]
Auto Trait Implementations
impl RefUnwindSafe for DirEntry
impl Send for DirEntry
impl Sync for DirEntry
impl Unpin for DirEntry
impl UnwindSafe for DirEntry
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
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.
pub 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>,