I have a requirement to change the sharing settings on a number of files hosted in Google Docs. I know that I can use DocsList Services with Google Apps Script if I want to add or remove Editors or Viewers from a file using calls like this:

var file = DocsList.createFile("My File", "ABC");
file.addEditor("MyUserName");

What I am looking for is a function that I can call that will allow me to change the overall sharing setting of the file from "Private" to "Anyone with a link". Does such a function exist anywhere? Thanks!

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Afraid not. You are welcome to request this as a requested new feature enhancement in the Issue Tracker.

http://code.google.com/p/google-apps-script-issues/issues/list

link|improve this answer
Thanks, I have filed Issue 947 for this. code.google.com/p/google-apps-script-issues/issues/… – DrewCo Dec 1 '11 at 2:04
feedback

That is indeed not possible, but there's a somewhat easy workaround. You can always place a document in a folder that is previously shared for "Anyone with a link", then the documents will be shared too. Since a document can be in multiple folders, you can have a folder just for that without messing with your current folder structure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.