|
XenevaOS
|
#include <SimpleFileSystem.h>

The EFI_FILE_PROTOCOL provides file IO access to supported file systems. An EFI_FILE_PROTOCOL provides access to a file's or directory's contents, and is also a reference to a location in the directory tree of the file system in which the file resides. With any given file handle, other files may be opened relative to this file's location, yielding new file handles.
| EFI_FILE_CLOSE _EFI_FILE_PROTOCOL::Close |
| EFI_FILE_DELETE _EFI_FILE_PROTOCOL::Delete |
| EFI_FILE_FLUSH _EFI_FILE_PROTOCOL::Flush |
| EFI_FILE_FLUSH_EX _EFI_FILE_PROTOCOL::FlushEx |
| EFI_FILE_GET_INFO _EFI_FILE_PROTOCOL::GetInfo |
| EFI_FILE_GET_POSITION _EFI_FILE_PROTOCOL::GetPosition |
| EFI_FILE_OPEN _EFI_FILE_PROTOCOL::Open |
| EFI_FILE_OPEN_EX _EFI_FILE_PROTOCOL::OpenEx |
| EFI_FILE_READ _EFI_FILE_PROTOCOL::Read |
| EFI_FILE_READ_EX _EFI_FILE_PROTOCOL::ReadEx |
| UINT64 _EFI_FILE_PROTOCOL::Revision |
The version of the EFI_FILE_PROTOCOL interface. The version specified by this specification is EFI_FILE_PROTOCOL_LATEST_REVISION. Future versions are required to be backward compatible to version 1.0.
| EFI_FILE_SET_INFO _EFI_FILE_PROTOCOL::SetInfo |
| EFI_FILE_SET_POSITION _EFI_FILE_PROTOCOL::SetPosition |
| EFI_FILE_WRITE _EFI_FILE_PROTOCOL::Write |
| EFI_FILE_WRITE_EX _EFI_FILE_PROTOCOL::WriteEx |