Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

366
Vistas
App script to get File Info (from a Google Drive Folder), Rename Files, Edit Permission controlled from a google sheet

What the app script code below does:

  1. function DriveLinkFetcher lists file details ("File url", "File name", "Viewers email", "Viewers names", "Editors email address", "Editors names", "Sharing Permission", "Sharing Access", "New file name", "Add new editors") of a google drive folder, given the url of the drive folder in cell "A2". The output is a list in a google sheet.

  2. function RenameDriveFiles renames "file names" in the folder to "new file names" depending on user input in the "New file name" column.


The problem:

function RenameDriveFiles works well for the files with no duplicate names. But if a file name has duplicates (for example, three "file 1", pls see the image) and I want to rename only the second file (rename to "file 100"), sometimes it renames all three files, sometimes two files.

The "File name" column contains duplicates and "File url" has unique IDs. So instead of using fldr.getFilesByName(oldNames[i]), is there a way to use fldr.getFilesByURL(URL[i])? Can you suggest any solution?


The output sheet is like this:

output sheet


The app script code:

    var ss=SpreadsheetApp.getActiveSpreadsheet();
    var sh=ss.getActiveSheet();


        function DriveLinkFetcher() {
          
.....
.....
        }
    
    
    function RenameDriveFiles() {
    
      var url=sh.getRange("A2").getValue(); //url input from user
      var fldrID=url.match(/[-\w]{25,}/);
      var fldr=DriveApp.getFolderById(fldrID);
      
      //var files=fldr.getFiles();
      
      var lr=sh.getLastRow()-6;
      var oldNames = [];
      var newNames = [];
    
      oldNames = sh.getRange(7, 2, lr).getValues();
      newNames = sh.getRange(7, 9, lr).getValues();
    
      
        for(var i = 0; i < oldNames.length ; i++){
    
          var myFileIterator = fldr.getFilesByName(oldNames[i]);
    
          while(myFileIterator.hasNext()){
            var currentFile = myFileIterator.next();
            currentFile.setName(newNames[i]);  
    
        }
      } 
    }
    
    
    

I know some VBA but this is my first attempt in app script. I am learning. Any help, any tip how to make this code better will be much appreciated. Thank you in advance.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

If you already have the list of URLs the task (to rename the files) becomes extremely simply and straightforward:

var ss=SpreadsheetApp.getActiveSpreadsheet();
var sh=ss.getActiveSheet();

function RenameDriveFiles() {

  var url      = sh.getRange("A2").getValue(); //url input from user
  var fldrID   = url.match(/[-\w]{25,}/);
  var fldr     = DriveApp.getFolderById(fldrID);
  var lr       = sh.getLastRow() - 6;
  var urls     = sh.getRange(7, 1, lr).getValues().flat();
  var ids      = urls.map(u => u.split('/')[5]);
  var newNames = sh.getRange(7, 9, lr).getValues().flat();

  for (var n in newNames) {
    if (newNames[n] != '') DriveApp.getFileById(ids[n]).setName(newNames[n]);
  }
}

You don't even need the old names.

But there could be some problems with shared folders, actually.

Update

To add several editors from column 10 ('J'):

var ss=SpreadsheetApp.getActiveSpreadsheet();
var sh=ss.getActiveSheet();

function RenameDriveFiles() {

  var url      = sh.getRange("A2").getValue(); //url input from user
  var fldrID   = url.match(/[-\w]{25,}/);
  var fldr     = DriveApp.getFolderById(fldrID);
  var lr       = sh.getLastRow() - 6;
  var urls     = sh.getRange(7, 1, lr).getValues().flat();
  var ids      = urls.map(u => u.split('/')[5]);
  var newNames = sh.getRange(7, 9, lr).getValues().flat();
  var newEditors = sh.getRange(7, 10, lr).getValues().flat(); // column J

  for (var n in newNames) {
    var file = DriveApp.getFileById(ids[n]);
    var editors = newEditors[n].split(',');
    if (newNames[n] != '') file.setName(newNames[n]);
    if (editors[0] != '') editors.forEach(ed => file.addEditor(ed));
  }
}

I haven't tried it, I hope it works.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda