rust-fatfs fork with rs-core_io as dependency instead. No support for chrono.
Go to file
Rafał Harabień d32ae0eef9 Allow seeking beyond end of file as documented in Seek trait.
Also fix possible panic when seeking in file without clusters.
2017-10-07 16:07:33 +02:00
examples Remove unneeded Fat prefix for most structures. 2017-10-07 14:56:50 +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 Allow seeking beyond end of file as documented in Seek trait. 2017-10-07 16:07:33 +02:00
tests Allow seeking beyond end of file as documented in Seek trait. 2017-10-07 16:07:33 +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 fatfs and add more info to Cargo.toml. 2017-10-06 17:00:38 +02:00
Cargo.toml Rename crate to fatfs and add more info to Cargo.toml. 2017-10-06 17:00:38 +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.