I am using a script to export google spreadsheet in CSV and create the file in the same folder with this code (thanks to Tanaike) :
var folder = DriveApp.getFileById(ss.getId()).getParents().next(); Is it possible at the same time to upload the created file (CSV) in an FTP (or SFTP) server?
Thank you
Is it possible at the same time to upload the created file (CSV) in an FTP (or SFTP) server? What FTP server? Apps Script only supports HTTP requests so you can't use FTP to transfer files anywhere.