gotenksfs icon indicating copy to clipboard operation
gotenksfs copied to clipboard

A file system on top of your file system

Results 4 gotenksfs issues
Sort by recently updated
recently updated
newest added

Could you specify the license in the repository settings, please?

## Erroneous Code Segment [Code Snippet](https://github.com/carlosgaldino/gotenksfs/blob/9768a65e9cfd911b80fc50009f0e6671a11361ee/src/gotenks/fs.rs#L592-L600) ## Output of command `cargo build` Compiling gotenksfs v0.0.0 (/home/mahanth/Documents/src/gotenksfs) error[E0308]: mismatched types --> src/gotenks/fs.rs:592:27 | 592 | f_blocks: sb.block_count, | ^^^^^^^^^^^^^^ expected `u64`,...

Why not use non zero integer types with option? I saw this project in an article.

Hi carlosgaldino. I read your article on creating a filesystem in rust here: [gotenksfs](https://blog.carlosgaldino.com/writing-a-file-system-from-scratch-in-rust.html) - my question would be whether it was possible to create a non-hierarchical file system. My...