On Wed, January 7, 2015 12:22 pm, David Cox wrote:
> I want to recursively read file information, including subdirectories on a
> volume.   I am using EFI SIMPLE FILE SYSTEM PROTOCOL, OpenVolume(...) and
> then EFI FILE PROTOCOL, Open(...).  This is OK for reading content but
> there is no interface to search the volume.

You can use the EFI_FILE_PROTOCOL.Read() function to iterate over
directory entries. For each call, the directory entry will be returned in
Buffer parameter as an EFI_FILE_INFO structure.

In UEFI spec, you can take a look at page 529 for information on that.

    -Paulo

-- 
Paulo Alcantara, C.E.S.A.R
Speaking for myself only.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to