节点:尝试重命名目录中的每个文件会跳过一些

Posted

技术标签:

【中文标题】节点:尝试重命名目录中的每个文件会跳过一些【英文标题】:Node: Trying to rename every file in a directory skips over some 【发布时间】:2015-03-20 17:34:17 【问题描述】:

我正在尝试浏览一个目录(及其所有子目录)并重命名(移动)每个图像(如果它是.jpg 文件)。我认为我的代码是正确的。我正在使用异步重命名和递增计数器来增加文件名。但出于某种原因,在我对四个左右子文件夹的测试中,只有一半的图像被重命名。我不知道为什么会这样,因为我只是在回调文件(成功重命名图像后)并检查控制台列出正在调用 rename 的每个文件时递增。

var fs = require('fs');
var filePrefix = 'new_Images';
var folderName = 'changed';
var counter = 0;

function examine (path) 
  fs.readdir(path, function (err, files) 
    files.forEach(function (file) 

      var oldPath = path + file;

      fs.stat(oldPath, function (err, stats) 
        if (stats.isDirectory()) 
          examine(oldPath + '/');
         else 

          var suffix = oldPath.substr(oldPath.length - 3);

          if (suffix === 'jpg') 
            fs.rename(oldPath, './' + folderName + '/' + filePrefix + counter + '.jpg', function (e) 
              if (e) throw new Error('something bad happened');
              console.log('Renamed a .jpg file');
              console.log(oldPath);
              console.log(counter);
              counter++;
            );
           else if (suffix === 'png') 
            fs.rename(oldPath, './' + folderName + './' + filePrefix + counter + '.png', function (e) 
              if (e) throw new Error('something bad happened');
              console.log('Renamed a .png file');
              console.log(oldPath);
              console.log(counter);
              counter++;
            );
           
        
      );
    );
  );


examine('./');

此代码将记录每个文件都已重命名,并且所有文件都将被删除,但实际上只有一半被移动(重命名)到新文件夹

【问题讨论】:

【参考方案1】:

我猜是文件被覆盖了。

由于在重命名时进行了异步调用,因此您应该在进行异步调用之前而不是在成功重命名之后增加 counter。由于异步调用没有顺序,有一半的调用是在任何成功的同名重命名操作之前进行的。

您可以通过记录文件名来验证这一点:

if (suffix === 'jpg') 
  console.log('renaming with file name ' + filePrefix + counter + '.jpg');
  fs.rename(oldPath, './' + folderName + '/' + filePrefix + counter + '.jpg', function (e) 
    ...
  );
 else if (suffix === 'png') 
  console.log('renaming with file name ' + filePrefix + counter + '.png');
  fs.rename(oldPath, './' + folderName + './' + filePrefix + counter + '.png', function (e) 
    ...
  );

【讨论】:

【参考方案2】:

这个程序满足所有要求

var fs = require('fs'),
path = require('path');

var oldPath = 'G:\\oldPath\\oldPath';
var newPath = 'G:\\newPath\\newPath\\';
var ext = 'jpg';
var newPrefix = 'newPrefix';

var myFun = function(mypath) 
 fs.readdir(mypath, function(error, files) 
     if (error)
         console.log('error ' + error.code + ' : ' + error.message);
     else 
         files.map(function(file) 
             return path.join(mypath, file)
         ).filter(function(file) 
             if(fs.statSync(file).isFile())
                 return file;
             else
                 return myFun(file);
         ).forEach(function(file)
             var path_file = file.split('\\');
             var extension = path_file[path_file.length - 1].split('.');
             if (extension[1] === ext) 
                 var source = fs.createReadStream(file);
                 var target = fs.createWriteStream(newPath + newPrefix + path_file[path_file.length - 1]);
                 source.pipe(target);
                 fs.unlink(file);
             
         )
     
 )

【讨论】:

以上是关于节点:尝试重命名目录中的每个文件会跳过一些的主要内容,如果未能解决你的问题,请参考以下文章

[重命名应用程序中的树节点时重命名文件夹名称

在Python中重命名目录中的多个文件[重复]

python重命名子目录中的所有文件

重命名目录中的所有文件[重复]

Linux系统下文件名出现中文乱码如何重命名回来

如何批量重命名目录、子目录和文件?