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

Libfat: Difference between revisions

From WiiBrew
Jump to navigation Jump to search
Tantric (talk | contribs)
No edit summary
Crayon (talk | contribs)
Version is 1.0.12
 
(25 intermediate revisions by 11 users not shown)
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]].
{{lowercase title}}
{{Infobox development tools
| title = libfat
| author =
| type = library
| version = 1.0.12
}}


==Installation==
'''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 included as part of [[devkitPPC]], just specify -lfat in LIBS section of your Makefile to start using it.
== 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.
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]]


==See Also==
== See Also ==


* [[:Category:Homebrew using libfat|Homebrew using libfat]]
* [[:Category:Homebrew using libfat|Homebrew using libfat]]
* [[Libntfs]]
* [[LibELM]]

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