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
m
(Version is 1.0.12)
 
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
{{lowercase title}}
 
{{lowercase title}}
 +
{{Infobox development tools
 +
| title = libfat
 +
| author =
 +
| type = library
 +
| version = 1.0.12
 +
}}
 +
 
'''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]].
 
'''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]].
  
Line 10: Line 17:
 
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]]
 
  Updated Sample Code At :
 
http://www.mediafire.com/?sharekey=d3305079b29b477600d27174b47c6657e04e75f6e8ebb871
 
  
 
== See Also ==
 
== See Also ==

Latest revision as of 23:26, 13 April 2014

libfat
General
TypeLibrary
Version1.0.12

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.

See Also