rust-fatfs fork with rs-core_io as dependency instead. No support for chrono.
Go to file
Rafał Harabień bc835d59b5 Don't use boxed buffer in FAT cluster reading code.
I assume gived Read object is capable of basic buffering and caching.
2017-10-04 13:56:44 +02:00
examples Remove FatDir::list() method. 2017-10-01 18:45:58 +02:00
resources Add LFN support and rename some functions. 2017-09-24 22:12:38 +02:00
scripts Add LFN support and rename some functions. 2017-09-24 22:12:38 +02:00
src Don't use boxed buffer in FAT cluster reading code. 2017-10-04 13:56:44 +02:00
tests Remove FatDir::list() method. 2017-10-01 18:45:58 +02:00
.gitignore Implemented reading FAT Boot Sector. 2017-09-22 02:13:29 +02:00
.travis.yml Add Travis CI integration. 2017-09-27 14:21:01 +02:00
Cargo.lock Rename crate to rfat. 2017-09-24 03:13:50 +02:00
Cargo.toml Rename crate to rfat. 2017-09-24 03:13:50 +02:00
LICENSE.txt Add license and README. 2017-09-22 22:36:51 +02:00
README.md Add Travis CI integration. 2017-09-27 14:21:01 +02:00

Rust FAT

Travis Build Status

Introduction

FAT filesystem read-only library implemented in Rust.

Features:

  • FAT12, FAT16, FAT32 filesystem versions,
  • read directory,
  • read file,
  • LFN (Long File Names).

Planned features:

  • write support,
  • no_std environment support.

License

The MIT license. See LICENSE.txt.