1
0
Fork
You've already forked libntfs
0
Port of the NTFS-3G driver to the Nintendo GameCube/Wii. https://libogc2.org/
  • C 99%
  • Makefile 1%
Find a file
2026年04月21日 11:45:08 -04:00
example Update example 2025年12月29日 12:01:37 -05:00
include Pass DISC_INTERFACE to interface 2024年11月08日 18:11:13 -05:00
libogc-rice Restructure libogc2 install 2025年10月07日 22:52:40 -04:00
libogc2 Restructure libogc2 install 2025年10月07日 22:52:40 -04:00
source Updated to NTFS-3G 2026年2月25日 (Apr 21, 2026) 2026年04月21日 11:45:08 -04:00
AUTHORS Updated to NTFS-3G 2022年10月3日 (Oct 3, 2022) 2023年03月29日 14:19:24 -04:00
CREDITS Updated to NTFS-3G 2022年10月3日 (Oct 3, 2022) 2023年03月29日 14:19:24 -04:00
LICENSE Initial commit, merged from https://mplayer-ce.googlecode.com/svn/branches/newgui/libs/libntfs 2009年09月07日 15:06:48 +12:00
Makefile Restructure libogc2 install 2025年10月07日 22:52:40 -04:00
README.md Formatting 2019年09月08日 16:27:04 +12:00

Introduction

The NTFS-3G driver is an open source, freely available read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD, Solaris and Haiku. It provides safe and fast handling of the Windows XP, Windows Server 2003, Windows 2000, Windows Vista, and Windows Server 2008 file systems.

The purpose of the project is to develop, continuously quality test and support a trustable, featureful and high performance solution for hardware platforms and operating systems whose users need to reliably interoperate with NTFS. Besides this practical goal, the project also aims to explore the limits of the hybrid, kernel/user space filesystem driver approach, performance, reliability and feature richness per invested effort wise.

The driver is in STABLE status. The test methods, the test suites used can be found at

http://ntfs-3g.org/quality.html

News, support answers, problem submission instructions, support and discussion forums, performance numbers and other information are available on the project web site at

http://ntfs-3g.org

For more details on the NTFS-3G project see the 'original' folder included with this package.

Compiling and Installing

Make sure you have devKitPro and the latest Nintendo GameCube/Wii development component (libgc/libwii) installed. Then type:

 make
 make install # or 'sudo make install' if you aren't root.

Usage

NTFS related routines can be accessed by adding the following line to your source file(s).

 #include <ntfs.h>

When compiling you must also link against the libntfs. To do this add -lntfs to the LIBS section of your application Makefile. For example:

 LIBS := -lwiiuse -lbte -lntfs -lfat -logc -lm

For a more practical example of using NTFS in your application, see the included example directory.