Can anybody help me out,
I want to create a Spreadsheet through App Script in a particular folder. How to do that.
Presently I am doing as follow:
folder = DriveApp.getFolderById("FOLDER_ID") var ss = SpreadsheetApp.create("SPREADSHEET_NAME") DriveApp.getFileById(ss.getId()).moveTo(folder);
You may use the above code to achieve the same without using advanced drive services