I'm creating a Google Form with information in a Google Spreadsheet. The form being created has multiple file upload questions, is there a method to add a file upload question to the form using Google App Scripts?
var form = FormApp.create('New Form');
form.addMultipleChoiceItem()
.setTitle('Do you have a cat or dog?')
.setChoiceValues(['Cats','Dogs'])
.showOtherOption(true);
form.add????????????????()
.setTitle('Upload a photo of your cat');