Skip to content

Commit

Permalink
removed sample folder IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
dustintodd123 authored Sep 25, 2021
1 parent bc22608 commit f379420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google-sharedrivecopy.gs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ function startv2() {
// If you have been driven insane by Google Drives inability to copy a folder structure from MyDrive to a Shared drive BOOM!
//

var sourceFolderId = "0B6NGZzLlehR2dlFuRnN6SnJKN3M"; //Folder ID of the folder structure you want to copy
var targetParentFolderId = "1dABjn4OGLcdvwjBLXCDanatxNGdSNnKR"; //Target parent folder ID where the source folder will be copied
var sourceFolderId = "XXXX"; //Folder ID of the folder structure you want to copy
var targetParentFolderId = "XXXX"; //Target parent folder ID where the source folder will be copied

var sourceFolder = DriveApp.getFolderById(sourceFolderId); //Source Folder
var targetParent = DriveApp.getFolderById(targetParentFolderId); //Parent Folder (target)
Expand Down

0 comments on commit f379420

Please sign in to comment.