> How to access to subfolder with google app script ?
एक्सेल और एडवांस एक्सेल से जुड़े सभी लेटेस्ट विडियो पाने के लिए मेरे यूट्यूब चैनल को अभी सबस्क्राइब करे लिंक नीचे है धन्यवाद |

How to access to subfolder with google app script ?

 How to access to subfolder with google app script ? 

 दोस्तों आज किस आर्टिकल में मैं आपको बताऊंगा कि आप किस तरीके से गूगल ड्राइव में यदि एक फोल्डर के अंदर मल्टीपल फोल्डर (How to access to subfolder with google appscript ) हैं तो आप उस फोल्डर को एक्सेस कैसे कर सकते हैं |





function getSubFolderFiles() {
  let folderID= DriveApp.getFolderById('190PVRzDUrECNO7Dwp3N2pByfJuH0Q1bU');
  let sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet1')
  let files = folderID.getFiles();
  let i =1
  while(files.hasNext()){
    let file = files.next();
    let fileName = file.getName();
sheet.getRange(i,1).setValue(fileName);
i++

  }
  let subFolder = folderID.getFolders();
  while(subFolder.hasNext()){
    let anotherFolder =subFolder.next();
    let allFile =anotherFolder.getFiles();
    while(allFile.hasNext()){
      let file=allFile.next();
      let name= file.getName();
      let lr = sheet.getLastRow();
      sheet.getRange(lr+1,1).setValue(name)
    }
  }
}

Download Sheet For Practice

एक टिप्पणी भेजें

0 टिप्पणियाँ