Home > other >  Can GoogleSheet write json to local folder in computer automatically by apps script?
Can GoogleSheet write json to local folder in computer automatically by apps script?

Time:01-18

I would like to write json files to the local computer( D://MyJsons ) by apps script. (I've already wrote the code to get json string. I just need a way to write to the local folder) I've found DriveApp.createFile to write to google drive, but not found a way to save in the local computer. Is that possible?

enter image description here

CodePudding user response:

Apps Script only work in the cloud, it has no access to your local storage. The best way to do it would probably to setup a synced folder between your computer / server and your drive.

  • Related