download file from
onedrive approot
or upload file toonedrive approot
,
Just a simple encapsulation ofonedrive-sdk-android
let OneDriveTool = cordova.plugins.OneDriveTool;
OneDriveTool.isFileExists(fileName, clientId, scope, (fileExistError, isExist) => {
if (fileExistError) {
...
} else {
...
}
});
let OneDriveTool = cordova.plugins.OneDriveTool;
OneDriveTool.saveFile(fileName, content, clientId, scope, (saveError) => {
if (saveError) {
...
} else {
...
}
});
let OneDriveTool = cordova.plugins.OneDriveTool;
OneDriveTool.downloadFile(fileName, clientId, scope, (downloadError, data) => {
if (downloadError) {
...
} else {
...
}
});