3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【GAS】マイドライブからファイルを移動する

Last updated at Posted at 2018-04-23

この記事は移行しました!最新の内容はこちらをご覧ください😀

GASでフォームなどのファイル作成したあとにフォルダ移動したくなり、
id指定で動作する汎用的な関数を作りました。

ポイントとしては最後にマイドライブから消す必要がある。(消さない場合もファイルは同じものを参照する)


function moveFromRootToFolder(file_id, folder_id) {
  var file = DriveApp.getFileById(file_id);
  DriveApp.getFolderById(folder_id).addFile(file);
  DriveApp.getRootFolder().removeFile(file);
}
3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?