2017-09-23 04:36:51 +08:00
|
|
|
Rust FAT
|
|
|
|
========
|
|
|
|
|
2017-09-27 20:21:01 +08:00
|
|
|
[![Travis Build Status](https://travis-ci.org/rafalh/rust-fat.svg?branch=master)](https://travis-ci.org/rafalh/rust-fat)
|
2017-10-11 06:57:31 +08:00
|
|
|
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.txt)
|
|
|
|
[![crates.io](http://meritbadge.herokuapp.com/fatfs)](https://crates.io/crates/fatfs)
|
|
|
|
[![Documentation](https://docs.rs/fatfs/badge.svg)](https://docs.rs/fatfs)
|
2017-09-27 20:21:01 +08:00
|
|
|
|
2017-09-23 04:36:51 +08:00
|
|
|
Introduction
|
|
|
|
------------
|
|
|
|
|
2017-10-10 03:14:28 +08:00
|
|
|
FAT filesystem library implemented in Rust.
|
2017-09-24 20:34:07 +08:00
|
|
|
|
2017-09-25 04:12:38 +08:00
|
|
|
Features:
|
2017-10-10 03:14:28 +08:00
|
|
|
* FAT12, FAT16, FAT32 supported,
|
|
|
|
* read directory entries,
|
|
|
|
* read file contents,
|
|
|
|
* LFN (Long File Names),
|
|
|
|
* basic write support (write and truncate existing file).
|
2017-09-25 04:12:38 +08:00
|
|
|
|
2017-10-10 03:14:28 +08:00
|
|
|
Missing features (yet):
|
|
|
|
* create new file/directory,
|
|
|
|
* remove file/directory,
|
|
|
|
|
|
|
|
Other planned features (Nice to Have):
|
2017-09-25 04:12:38 +08:00
|
|
|
* no_std environment support.
|
2017-09-23 04:36:51 +08:00
|
|
|
|
|
|
|
License
|
|
|
|
-------
|
|
|
|
The MIT license. See LICENSE.txt.
|