Skip to content

Instantly share code, notes, and snippets.

View BinnyChanchal's full-sized avatar

Binny Chanchal BinnyChanchal

View GitHub Profile
@BinnyChanchal
BinnyChanchal / gist:161d3c5b9cb44187a2a174aecf0b86d1
Created February 11, 2020 13:19
List files on Google Shared Drive(Team Drive)
function gettigAllTeamDrivesWithId(){
let drives = Drive.Drives.list();
return drives;
}
function gettingAllFilesOfTeamDrive(teamDriveId){
var query = 'mimeType = "application/vnd.google-apps.folder" and trashed=false ';
var param = {
corpora:'teamDrive',
includeTeamDriveItems:true,