Sergiu Pușcaș
Sergiu Pușcaș
Wrote about this briefly in https://github.com/harababurel/gcsf/issues/35#issuecomment-460017177. Will use #4 to keep track of this task as I make progress on it.
I am very late to this but nonetheless it should be easy to implement such a feature by adding one or more regex patterns in the config (or on the...
Nice to hear that you found a cool and unusual use for this project :-). I think the issue stems from [this](https://docs.rs/fuse/0.3.1/fuse/trait.Filesystem.html#method.create): > `fn create(...)` > [...] If this method...
This might be achievable using something like [hyper-proxy](https://github.com/tafia/hyper-proxy), but there is a chance that it requires changes to the Drive API library itself instead of GCSF. I will look into...
Does `mount | grep gcsf` output anything? If so, try manually unmounting the file system: `fusermount -u /Users/andrei/Documents/gcsf`. If the problem still persists, try setting `debug = true` in the...
I have made the `NullFs` check optional as of version `0.1.14`. It can be disabled by setting `mount_check = false` in the configuration file. You can update GCSF by running...
It seems that the file system is mounted without issues. Does running a command inside it (`ls $mountpoint`, for instance) output any error or does it just block? It might...
@sergeyklay Unfortunately I think all recent versions have the same behavior. @TylerBrock At the moment I have no idea how to solve this. Other users of the fuse crate seem...
@asimonov the command is meant to block for the entire life of the filesystem. Killing `gcsf` will unmount the filesystem. Alternatively, unmounting the filesystem using `fusermount -u $MOUNTPOINT` will probably...
You should be able to create your own credentials and use them instead: https://github.com/harababurel/gcsf/blob/b198d66cf9f60983c15b855ff52efe35efd891f6/sample_config.toml#L58-L60