Libfat: Difference between revisions
Jump to navigation
Jump to search
new page with download link and category |
Version is 1.0.12 |
||
(29 intermediate revisions by 12 users not shown) | |||
Line 1: | Line 1: | ||
{{Infobox | {{lowercase title}} | ||
{{Infobox development tools | |||
| title = libfat | | title = libfat | ||
| | | author = | ||
| type = | | type = library | ||
| version | | 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]]. | |||
==Installation== | == Installation == | ||
libfat is included as part of [[devkitPPC]], just specify -lfat in LIBS section of your Makefile to start using it. | |||
[[ | == Sample Code == | ||
[[Category:Homebrew using libfat]] | |||
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:Homebrew using libfat|Homebrew using libfat]] | |||
* [[Libntfs]] | |||
* [[LibELM]] |
Latest revision as of 23:26, 13 April 2014
libfat | |
General | |
---|---|
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.
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.