9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Apps Scriptで共有ファイルのダウンロードを不可にする設定をする

Posted at

概要

Googleドライブの共有の詳細設定で「閲覧者(コメント可)と閲覧者のダウンロード、印刷、コピーを無効にします」という項目がありますが、これをGoogle Apps Scriptで設定するやり方を書きました。

手動で設定する場合

  1. 対象のファイルを選択して右クリックで共有を選択する
    スクリーンショット 2019-10-03 11.49.25.png

  2. 共有画面にある詳細設定を選択する
    スクリーンショット 2019-10-03 11.42.57.png

3. 「閲覧者(コメント可)と閲覧者のダウンロード、印刷、コピーを無効にします」のチェックを入れる
スクリーンショット 2019-10-03 11.35.47.png

4. これで閲覧者(閲覧権限とコメント可権限)はダウンロードが不可となる
スクリーンショット 2019-10-03 11.52.27.png

Google Apps Scriptで設定する場合

Drive APIを有効にする

DriveAppではなくDrive APIを使う

  1. メニューの「リソース」から「Googleの拡張サービス」を選択する
    スクリーンショット 2019-10-03 11.28.45.png

  2. Drive APIを「ON」にする
    スクリーンショット 2019-10-03 11.27.31.png

  3. Drive. と入力すると入力候補が出てくるようになります
    スクリーンショット 2019-10-03 11.28.16.png

フォルダ内のファイルにダウンロード不可の設定をする

updateメソッドでファイルのプロパティを変更する

変更するプロパティ

copyRequiresWriterPermission
値をtrueにする

function dtest() {
  var folder = DriveApp.getFolderById(folderID);
  var files = folder.getFiles();

  while(files.hasNext()) {
    var file = files.next();
    var fileId = file.getId();
    Drive.Files.update({
        copyRequiresWriterPermission: true
      }, fileId)
  }  
}

参考にしたページ

Google Apps Script Advanced Drive Service リファレンス
https://developers.google.com/apps-script/advanced/drive

Google Drive API v2 リファレンス
https://developers.google.com/drive/api/v2/reference/files

9
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?