pyfatfs icon indicating copy to clipboard operation
pyfatfs copied to clipboard

Python based FAT12/FAT16/FAT32 implementation with VFAT support

Results 9 pyfatfs issues
Sort by recently updated
recently updated
newest added

According to the specification, FSInfo may contain a valid count of free clusters on the volume. pyfatfs should ideally update the value on writes.

enhancement

`open_fs` function takes in the `create` optional argument, which when set, will create the filesystem instead raising an exception on opening a (non-existent) disk image file. Currently, pyfatfs [does not](https://github.com/nathanhi/pyfatfs/blob/ee9ff1897ce5289f709e2f7692ccce2ab8dd5e4a/pyfatfs/PyFatFSOpener.py#L32)...

enhancement

Hello, I package the exe file through the installer, running error: protocol 'fat' is not supported, but running the program directly does not report errors. After the exe file is...

Hello, this project looks really cool and I wanted to integrate it as a backend into ratarmount, if you are not opposed to that. However, while looking into it, I...

As mentioned in #41, I am trying to use this project via FUSE. The current [work in progress](https://github.com/mxmlnkn/ratarmount/commit/a3bdbee04342256e5f017854db371d8423b426a8) works quite fine already. Bash script to test the work-in-progress state. ```bash...

The version constraints defined with ~= in pyproject.toml are too strict, and don't allow using pyfatfs with newer versions. We have successfully tested with: - setuptools 80.9.0 - setuptools-scm 8.3.1...

fix #41 this is a breaking change so probably should be done in a fork something like `fsspec-fat`

make_8dot3_name function generates the SFN, truncate the length of body and extension (if it exist) to 8 and 3 bytes respectively. If there is no repetition of SFN, no numeric...