#[repr(transparent)]
pub struct Directory(_);
Expand description

A FileHandle that is also a directory.

Use File::into_type or Directory::new to create a Directory. In addition to supporting the normal File operations, Directory supports iterating over its contained files.

Implementations

Coverts a FileHandle into a Directory without checking the file type.

Safety

This function should only be called on files which ARE directories, doing otherwise is unsafe.

pub fn read_entry<'buf>(
    &mut self,
    buffer: &'buf mut [u8]
) -> Result<Option<&'buf mut FileInfo>, Option<usize>>

Read the next directory entry

Try to read the next directory entry into buffer. If the buffer is too small, report the required buffer size as part of the error. If there are no more directory entries, return an empty optional.

The input buffer must be correctly aligned for a FileInfo. You can query the required alignment through the Align trait (<FileInfo as Align>::alignment()).

Arguments
  • buffer The target buffer of the read operation
Errors
  • uefi::Status::NO_MEDIA The device has no media
  • uefi::Status::DEVICE_ERROR The device reported an error, the file was deleted, or the end of the file was reached before the read().
  • uefi::Status::VOLUME_CORRUPTED The filesystem structures are corrupted
  • uefi::Status::BUFFER_TOO_SMALL The buffer is too small to hold a directory entry, the required buffer size is provided into the error.

pub fn reset_entry_readout(&mut self) -> Result

Start over the process of enumerating directory entries

Trait Implementations

Try to open a file relative to this file. Read more

Close this file handle. Same as dropping this structure.

Closes and deletes this file Read more

Queries some information about a file Read more

Sets some information about a file Read more

Flushes all modified data associated with the file handle to the device Read more

Get the dynamically allocated info for a file

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.