Updated goodls to v123
-
v1.2.3 (October 31, 2019)
-
An option for inputting the directory to save the downloaded files was added.
$ goodls -u [URL] -d [directory]
-
The detail information and how to get this are https://github.com/tanaikech/goodls.
v1.2.3 (October 31, 2019)
An option for inputting the directory to save the downloaded files was added.
$ goodls -u [URL] -d [directory]The detail information and how to get this are https://github.com/tanaikech/goodls.
I have already reported about “Automatic Recalculation of Custom Function on Spreadsheet Part 1” at here. Here, I would like to introduce other workaround for forcibly recalculating the custom functions and built-in functions using Class TextFinder. Class TextFinder has added at April 5, 2019. By this, this workaround can be proposed.
If you want to refresh all functions of all sheets in a Spreadsheet, you can use the following script. In this script, when the script is run, all built-in functions and custom functions in the Spreadsheet are refreshed.
v1.0.1 (October 25, 2019)
You can see the detail information here https://github.com/tanaikech/GetEditType
v1.0.1 (October 15, 2019)
You can see the detail information here https://github.com/tanaikech/ZipFolder
This is a sample script for uploading multiple files with large size (> 50 MB) at the sidebar, dialog of Google Docs and Web Apps using the resumable upload of the asynchronous process with Javascript and Google Apps Script (GAS).
This is a demonstration of this script. As a demonstration, it uploads 5 files with the size of 100 MB to own Google Drive. When the files were selected and the upload button is clicked, those are uploaded by the resumable upload with the asynchronous process. It is found that the files can be completely uploaded with the asynchronous process. In this demo, as a test case, the chunk size of 20 MB was used.
This is a Javascript library to achieve the resumable upload for Google Drive.
When a file more than 5 MB is uploaded to Google Drive with Drive API, the resumable upload is required to be used. I have already published the sample script for “Resumable Upload for Web Apps using Google Apps Script”. Ref In this case, Web Apps is used. Here, I would like to introduce the script for the resumable upload created by only Javascript. Unfortunately, in the current stage, at google-api-javascript-client, there are no methods for the resumable upload. And, I thought that when this function is created as a Javascript library, it might be useful for users. Also that library is also useful for me. So I created this. If this was useful for your situation, I’m glad.
This is a sample script for downloading files from Google Drive by the one time download method.
When you download a file from Google Drive, in generally, the login and the access token are required. If you want to download the file without the authorization for the simple situation, the file is required to be publicly shared. But the file might not be able to be shared publicly, because of various reasons.
v1.0.1 (September 30, 2019)
You can see the detail information here https://github.com/tanaikech/GetFileList_js
v1.1.1 (September 20, 2019)
0 was used as the argument, null was returned. This bug was removed.You can see the detail information here https://github.com/tanaikech/RunAll
This is a sample script for modifying the revisions of a file on Google Drive using Google Apps Script. This script can be used for not only Google Docs files, but also the files except for Google Docs.
Unfortunately, in the current stage, at Google Docs files, the revision of Google Docs cannot be directly changed by APIs with a script. So as one of several workarounds, I would like to propose to overwrite the Google Docs file using the exported data. On the other hand, at the files except for Google Docs, the data can be directly retrieved with the revision ID. This can be used for overwriting the file. The flow of this script is as follows.