A FUSE driver for Microsoft OneDrive™.
Before you can mount your personal cloud drive:
- create a
config.jsonfile in~/.config/onedrivefsby copyingconfig.json.template - set the client ID (also known as application ID) and authorization code
-
the client ID is obtained by registering the application here
-
the authorization code is obtained by opening a link like the following in your browser (notice the client_id token):
https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=${client_id}&scope=files.readwrite.all%20offline_access&response_type=code&redirect_uri=https%3A%2F%2Flogin.microsoftonline.com%2Fcommon%2Foauth2%2FnativeclientAfter signing in, look in the address bar for a string that looks something like
Mcb1aa9bf-b777-911b-2719-fddeacda4713. Copy it in yourconfig.json.
-
Once all the needed information has been collected and set, you can do:
$ onedrivefs <your-mount-point>
and if you want to remove the mount:
fusermount -u <your-mount-point>
- List the drive contents
- Get the drive available space and total size
- Read files
- Delete files
- Delete directories
- Get the SHA1 hash of each file (if available) via xattr-s (see
getfattr -d <file>) - Basic directory entry cache
You will need:
- gcc >= 4.8.1
- libcurl >= 7.47
- jsoncpp >= 1.7
- fuse >= 2.9
- meson
- ninja
In order to build the executable do:
$ git clone https://github.com/mdontu/onedrivefs.git
$ cd onedrivefs
$ mkdir build
$ cd build
$ meson ..
$ ninja
- In-application OAuth2 is not supported (hence the dance with the client ID and authorization code)
- Only the root drive is exposed
- Writes are not supported
- Copying files is not very fast. Use
ddwith a large block size (1MiB or more) as eachread()translates into an HTTPS request - Deleting files moves them to Recycle Bin
- Directory listings are limited to 200 entries