Is it possible to collect all the sheet ids of sheets stored in a folder? I am trying to make a program that is able to update the names of sheets based off of a word in a sheet cell, I have the code already made for that here:
#this section gets the value of a specific cell for the document renaming
row = ss_client.Sheets.get_row(sheetID, rowID)
cell = row.get_column(columnID)
cellValue = cell.value + ' Folder' # This will be changed based on the type of item
# cell.value is equal to the project name
I was wondering if anyone had some input on this, I was playing around with it and an Idea I had was to use an array to store the sheet ids, and then updating the sheet names with the array that I created.
tl;dr I have a script that creates a newly copied folder and want to get a list of all the sheet ids in that new folder