fuse-google-drive
fuse-google-drive copied to clipboard
A fuse filesystem wrapper for Google Drive.
Hi, thank you for creating fuse-google-drive. I am looking for the way to write a client for Google Drive for some time now, to handle the fuse requests for my...
Hi. I've tried commit 6767f4256b1b2f0d8d9d1d5a24d15b6b7eab0231 on NixOS. Everything builds ok, but then.. ``` [ierton@greyblade:~/tmp/fuse-google-drive]$ ./fuse-google-drive mountpoint/ Please open this in a web browser and authorize fuse-google-drive: https://accounts.google.com/o/oauth2/auth?response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fdocs.google.com%2Ffeeds%2F+https%3A%2F%2Fdocs.googleusercontent.com%2F+https%3A%2F%2Fspreadsheets.google.com%2Ffeeds%2F&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&client_id=389999424326.apps.googleusercontent.com Once you authenticate,...
When I use Squid HTTP/HTTPS proxy, fuse-google-drive segfaults near the end of the process (after outputing `Connection #0 to host 127.0.0.1 left intact`) and fails to mount. When I go...
In gd_cache.c the following code crashed: ``` if(strcmp(name, "content") == 0) { value = xmlGetProp(c1, "src"); str_init_create(&entry->src, value, 0); xmlFree(value); } ``` because value==NULL. If it is a protocol error...
Requiring all these different files is a bit obnoxious for new users. There should be a way to help streamline this setup process. At a minimum, reducing the number of...
Segfault on unmount, probably caused by this: ``` ==4526== Invalid free() / delete / delete[] / realloc() ==4526== at 0x4C29A9E: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==4526== by 0x40388A: fstack_pop (functional_stack.c:47) ==4526== by...
Recently made the str class, which leaves adding more functions to make using it simpler. Right now I have to do some painful manipulations to make things usable when interfacing...
With a few thousand files, it's currently pretty slow even on a fast connection... The default is 100 files/request. Would changing that to 1000 slow down requests for users with
Folders
My understanding is that Google Drive supports having multiple parent folders for a single file. Should we mimic this with soft or hard links? If not, how do we handle...