Hi Team, I would like to upload CSV file under the folder name Test into the Dropbox. I have been trying the below code to finish my task but it's been unsuccessful. file dropbox url 'https://www.dropbox.com/' Email='n*******s@***.com' Pass='**********' prompt; data _null_; infile dropbox length=len; input record $varying200. len; put record $varying200. len; if _n_=15 then stop; run; proc export data=merge1; outfile = "\file.csv" replace; run; Here the SAS code should login with my dropbox credentials and create a folder called TEST and upload the CSV file into it. It will be helpfull if you can come up with some solution to the problem.
... View more