There is something i just don't understand about the logic in DriveApp scripting..the most basic example:
var driveFile = DriveApp.getFileById(id); // makes sense, i can access the file
var name = driveFile.getName(); // makes sense, i easily get the file name
var parentFolder = driveFile.getParents(); // i get folderIterator
var parentFolderName = // how do i get this???
If i look the documentation folder iterator only lets me access this:
- getContinuationToken() String Gets a token that can be used to resume this iteration at a later time.
- hasNext() Boolean Determines whether calling next() will return an item.
- next() Folder Gets the next item in the collection of files or folders.
How do i get the name for that specific parent folder?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…