In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Libfat"

From WiiBrew
Jump to navigation Jump to search
(→‎See Also: Added LibELM)
m
Line 8: Line 8:
 
== Sample Code ==
 
== Sample Code ==
  
The following is a piece of sample code that illustrates using libfat to do a recursive directory listing of the sd card.
+
The following is a piece of sample code that illustrates using libFAT to do a recursive directory listing of the SD card.
 
* [[Media:Directory.zip|Sample code]]
 
* [[Media:Directory.zip|Sample code]]
  
Line 16: Line 16:
 
== See Also ==
 
== See Also ==
  
* [[:Category:Homebrew using libfat|Homebrew using libfat]]
+
* [[:Category:Homebrew using libfat|Homebrew using libFAT]]
 
* [[Libntfs]]
 
* [[Libntfs]]
 
* [[LibELM]]
 
* [[LibELM]]

Revision as of 17:21, 21 September 2009

libFAT is a library for accessing FAT file systems such as those on SD cards and USB mass storage devices. It is included as part of devkitPPC / libogc.

Installation

libFAT is included as part of devkitPPC, just specify -lfat in LIBS section of your Makefile to start using it.

Sample Code

The following is a piece of sample code that illustrates using libFAT to do a recursive directory listing of the SD card.

 Updated Sample Code At :
http://www.mediafire.com/?sharekey=d3305079b29b477600d27174b47c6657e04e75f6e8ebb871

See Also