I have a batch of files
I know how to query files
JavaScript
x
2
1
drive.ListFile({'q': "'id' in parents and trashed=false"}).GetList()
2
Now I want to batch files
Setting can only view and prohibit download
But I don’t know how to achieve
Advertisement
Answer
After finding your GoogleDrive file.
Use copyRequiresWriterPermission = True.
Then upload.
JavaScript
1
3
1
file['copyRequiresWriterPermission'] = True
2
file.Upload()
3