Sergiu Pușcaș
Sergiu Pușcaș
GCSF populates the file tree at mount time, making `O(tree depth)` requests to Drive (one request for each level). This can be reduced to `O(1)` but requires a better strategy...
Intended behavior: - [x] The Trash directory should show all files with `trashed = true` on Drive. - [x] Removing a file (`unlink`) from any directory mark it as trashed....
Google suggests enabling [`gzip` compression](https://developers.google.com/drive/api/v3/performance) before transferring files over the network: > In order to receive a gzip-encoded response you must do two things: Set an `Accept-Encoding` header, and modify...
File size is not a well defined concept for special Drive documents (Docs, Sheets, Slides) because it depends on the export format. For such documents, GCSF should report the corresponding...
As requested in [#17](https://github.com/harababurel/gcsf/issues/17), I added a dedicated issue for tracking progress on adding support for Windows. TODO: look into [winfsp](https://github.com/billziss-gh/winfsp).
`chmod` does not work because the [`setattr`](https://docs.rs/fuse/latest/fuse/trait.Filesystem.html#method.setattr) method defined in the `fuse` crate does not allow setting file permissions (AFAICT). Find a way to add support for setting file attributes....
GCSF exports special documents (Docs, Sheets, Slides) using the [OpenDocument](https://www.openoffice.org/framework/documentation/mimetypes/mimetypes.html) format. Users should be able to specify any MIME type supported by Drive.