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 (Reverted edits by Randomdude (Talk) to last revision by Aruskano)
m
Line 1: Line 1:
 
{{lowercase title}}
 
{{lowercase title}}
 +
{{Infobox development tools
 +
| title = libfat
 +
| author =
 +
| type = Library
 +
}}
 +
 
'''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]].
  

Revision as of 21:44, 26 July 2010

libfat
General
TypeLibrary

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