pub struct DirEntryViewUtf8 { /* private fields */ }fs_utf8 only.Expand description
Entries returned by the ReadDir iterator.
This corresponds to std::fs::DirEntry.
Unlike std::fs::DirEntry, this API has no DirEntry::path, because
absolute paths don’t interoperate well with the capability model.
There is a file_name function, however there are also open,
open_with, open_dir, remove_file, and remove_dir functions for
opening or removing the entry directly, which can be more efficient and
convenient.
There is no from_std method, as std::fs::DirEntry doesn’t provide a
way to construct a DirEntry without opening directories by ambient paths.
Implementations§
Source§impl DirEntryViewUtf8
impl DirEntryViewUtf8
Sourcepub fn open_with(&self, options: &OpenOptions) -> Result<File>
pub fn open_with(&self, options: &OpenOptions) -> Result<File>
Open the file with the given options.
Sourcepub fn open_dir(&self) -> Result<DirViewUtf8>
pub fn open_dir(&self) -> Result<DirViewUtf8>
Open the entry as a directory.
Sourcepub fn remove_file(&self) -> Result<()>
pub fn remove_file(&self) -> Result<()>
Removes the file from its filesystem.
Sourcepub fn remove_dir(&self) -> Result<()>
pub fn remove_dir(&self) -> Result<()>
Removes the directory from its filesystem.
Sourcepub fn metadata(&self) -> Result<Metadata>
pub fn metadata(&self) -> Result<Metadata>
Returns the metadata for the file that this entry points at.
This corresponds to std::fs::DirEntry::metadata.
Sourcepub fn file_type(&self) -> Result<FileType>
pub fn file_type(&self) -> Result<FileType>
Returns the file type for the file that this entry points at.
This corresponds to std::fs::DirEntry::file_type.
Sourcepub fn file_name(&self) -> Result<String>
pub fn file_name(&self) -> Result<String>
Returns the bare file name of this directory entry without any other leading path component.
This corresponds to std::fs::DirEntry::file_name.
Trait Implementations§
Source§impl Debug for DirEntryViewUtf8
impl Debug for DirEntryViewUtf8
Source§impl DirEntryExt for DirEntryViewUtf8
Available on non-Windows only.
impl DirEntryExt for DirEntryViewUtf8
Source§impl DirEntryExt for DirEntryViewUtf8
Available on crate feature cap-fs-ext only.
impl DirEntryExt for DirEntryViewUtf8
cap-fs-ext only.