rust-vfs icon indicating copy to clipboard operation
rust-vfs copied to clipboard

A virtual filesystem for Rust

Results 20 rust-vfs issues
Sort by recently updated
recently updated
newest added

Will close https://github.com/manuel-woelker/rust-vfs/issues/35 by providing a light implementation of seekable file support

I'm working on [a union crate](https://gitlab.com/jackyalcine/rusqlite-vfs) for this one and [rusqlite](https://github.com/rusqlite/rusqlite/) that allows it to be used as the underlying storage. I have [a branch that implements “random access”](https://github.com/manuel-woelker/rust-vfs/compare/master...jalcine:rust-vfs:add-random-access-file), which...

Hello! I'm one of the core maintainers of the [rs-tiled](https://github.com/mapeditor/rs-tiled) crate, and have been considering this crate for a while to solve a few issues we're having with source paths...

Hi, I did a proof of concept implementation of a HttpsFS. This FS allows to access over HTTPS. The whole implementation is work in progress and not ready for a...

Hi there -- thanks for writing this crate! I'd like to use it for some of my own crates that interact with the file system. I'm wondering if you think...

It would be cool to write Rust code that could accept a `&dyn vfs::filesystem::FileSystem` argument and then read data from a variety of file system formats. You already have `AltrootFS`,...

I think, I found another issue with the VfsPath. Let assume, that we want to read some path from a configuration file. Therefore we write a function with a header...

The documentation on the move_file method states "The destination must not exist, but its parent directory must". This doesn't align with the behavior of the built-in fs::rename method (which the...

I have tried to use this library for transactional filesystem operations; specifically, when my project is usually invoked, when using stdlib file system operations, intermediate artifacts could be left on...

Separate the FileSystem trait and AynscFileSystem trait into `ReadOnlyFileSystem` and `WriteOnlyFileSystem`.