FAT32 Library

A library for manipulating FAT file systems.

License

License

GroupId

GroupId

de.waldheinz
ArtifactId

ArtifactId

fat32-lib
Last Version

Last Version

0.6.5
Release Date

Release Date

Type

Type

jar
Description

Description

FAT32 Library
A library for manipulating FAT file systems.
Project URL

Project URL

https://github.com/waldheinz/fat32-lib
Source Code Management

Source Code Management

https://github.com/waldheinz/fat32-lib

Download fat32-lib

How to add to project

<!-- https://jarcasting.com/artifacts/de.waldheinz/fat32-lib/ -->
<dependency>
    <groupId>de.waldheinz</groupId>
    <artifactId>fat32-lib</artifactId>
    <version>0.6.5</version>
</dependency>
// https://jarcasting.com/artifacts/de.waldheinz/fat32-lib/
implementation 'de.waldheinz:fat32-lib:0.6.5'
// https://jarcasting.com/artifacts/de.waldheinz/fat32-lib/
implementation ("de.waldheinz:fat32-lib:0.6.5")
'de.waldheinz:fat32-lib:jar:0.6.5'
<dependency org="de.waldheinz" name="fat32-lib" rev="0.6.5">
  <artifact name="fat32-lib" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.waldheinz', module='fat32-lib', version='0.6.5')
)
libraryDependencies += "de.waldheinz" % "fat32-lib" % "0.6.5"
[de.waldheinz/fat32-lib "0.6.5"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

fat32-lib

Flattr fat32-lib Build Status

This library allows to manipulate FAT file systems using the Java programming language. Because of it's age and simplicity, FAT can be called the least common denominator in file systems, being used in digital cameras, cell phones, ... and being supported by almost every operating system in existence. This project aims for making FAT file systems accessible for Java programs without using the operating system to interpret the on-disk structures. Instead, we provide a pure - Java implementation of the FAT specification from MICROS~1.

Features

The following features are currently supported:

  • creating FAT12, FAT16 and FAT32 file systems through the super floppy formatter
  • r/w access to FAT12, FAT16 and FAT32 file systems
  • manipulating the FAT file attributes (archive, hidden, system and read-only)
  • r/w access to the FAT's volume label
  • no external dependencies

Getting started

To use the fat32-lib you will have to add it to the classpath of your project. For Maven users it is sufficient to add

<dependency>
    <groupId>de.waldheinz</groupId>
    <artifactId>fat32-lib</artifactId>
    <version>0.6.5</version>
</dependency>

to the dependencies section of your pom. Now check out the API docs. If you're into creating FAT file system, the SuperFloppyFormatter would be a good starting point. And don't hestitate to ask if there are any questions.

History

This library was originally based on the FAT file system driver included in the JNode operating system. Since then, many bugs were fixed, the code was re-factored several times, and now I think it is fair to call the fat32-lib an original implementation of the FAT file system family.

Versions

Version
0.6.5
0.6.4
0.6
0.5.1
0.5.0