tanaike

The Thinker

Downloading Files Under Specific Folder using Node.js

Gists This sample script is for downloading files under a specific folder using Node.js. It can download files with Google Docs and others. This sample supposes as follows. So please confirm it. quickstart is used and default quickstart works fine. In order to use this sample, please carry out as follows. Replace listFiles() of the default quickstart to this sample. Set folderid. This script can retrieve files in the folder with folderid.

GAS Library - OnedriveApp

This is a library of Google Apps Script for using Microsoft OneDrive. Feature This library can carry out following functions using OneDrive APIs. Retrieve file list on OneDrive. Delete files and folders on OneDrive. Create folder on OneDrive. Download files from OneDrive to Google Drive. Upload files from Google Drive to OneDrive. Demo You can see the detail information here https://github.com/tanaikech/OnedriveApp

Uploading Files to OneDrive Using Node.js

Gists Upload contents for an item on OneDrive In order to use this script, please retrieve client id, client secret and refresh token before. About this, you can see the detail information at https://gist.github.com/tanaikech/d9674f0ead7e3320c5e3184f5d1b05cc. 1. Simple item upload This is for the simple item upload is available for items with less than 4 MB of content. The detail information is https://dev.onedrive.com/items/upload_put.htm. var fs = require('fs'); var mime = require('mime'); var request = require('request'); var file = '.

Interconversion Between Google Docs and Microsoft Docs

Gists Updated: January 22, 2023 This sample script is for the interconversion between Google Docs (document, spreadsheet and presentation) and Microsoft Docs (word, excel and powerpoint). The feature is to convert them without Advanced Google Services. Since Advanced Google Services is not used for this, if you publish your script with this script, you are not necessary to explain how to install Advanced Google Services. This script converts between Google Docs and Microsoft Docs using UrlFetchApp.