设置只能看到并禁止下载

Setting can only see and prohibit download

我有一批文件

我会查询文件

drive.ListFile({'q': "'id' in parents and trashed=false"}).GetList()

现在我要批量处理文件

设置只能查看禁止下载

但是不知道怎么实现

找到您的 GoogleDrive 文件后。

使用 copyRequiresWriterPermission = True。

然后上传。

file['copyRequiresWriterPermission'] = True
file.Upload()