Difference between revisions of "Libfat"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | + | '''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]]. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Installation== | ==Installation== | ||
− | + | libFAT is included as part of [[devkitPPC]], just specify -lfat in LIBS section of your Makefile to start using it. | |
== 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. [[Media:Directory.zip| | + | 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]] | ||
− | == | + | ==See Also== |
− | |||
− | [[Category: | + | * [[:Category:Homebrew using libfat|Homebrew using libfat]]. |
Revision as of 08:58, 26 May 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.
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.