Grunt-Contrib-Copy,如何在不覆盖目标文件夹中现有 files/folders 的情况下复制保持相同文件夹结构的目录内容?

Grunt-Contrib-Copy, how to copy contents of a directory keeping the same folder structure without overwriting existing files/folders in dest folder?

源结构 ``` 文件夹

|----Sub-Folder-1
|    |-a.js
|    |-b.js
|----Sub-Folder-2
|    |-c.js
|-d.js
|-e.js
```

运行复制任务之前的目标结构 ``` 文件夹

|----Sub-Folder-1
|    |-a.js
|-e.js
```

我需要目标文件夹与 src 文件夹完全相同,但我不想覆盖现有文件,例如上面示例中的 a.js 和 e.js 已经存在,所以它们不应该被触及,其他 files/folders 应该被创建,所以我想递归检查 'folder' 内部是否存在文件,如果不存在则复制它。我一直在使用以下过滤器来不覆盖单个文件 过滤器:函数(文件路径){ return !(grunt.file.exists('dest')); } 但'文件夹包含多个子目录和文件,因此为每个文件编写是不可行的。请帮助编写可以执行此操作的自定义 grunt 任务。

这可以通过在 grunt-contrib-copy 目标的 filter 函数中添加自定义逻辑来实现,以执行以下操作:

  1. 利用 nodejs path 模块来帮助确定结果路径。
  2. 利用grunt.file.exists.
  3. 判断目标路径中是否已经存在文件

以下要点演示了如何跨平台实现您的要求:

Gruntfile.js

module.exports = function (grunt) {

  'use strict';

  var path = require('path'); // Load additional built-in node module. 

  grunt.loadNpmTasks('grunt-contrib-copy');

  grunt.initConfig({
    copy: {
      non_existing: {
        expand: true,
        cwd: 'src/', //       <-- Define as necessary.
        src: [ '**/*.js' ],
        dest: 'dist/', //     <-- Define as necessary.

        // Copy file only when it does not exist.
        filter: function (filePath) {

          // For cross-platform. When run on Windows any forward slash(s)
          // defined in the `cwd` config path are replaced with backslash(s).
          var srcDir = path.normalize(grunt.config('copy.non_existing.cwd'));

          // Combine the `dest` config path value with the
          // `filepath` value excluding the cwd` config path part.
          var destPath = path.join(
            grunt.config('copy.non_existing.dest'),
            filePath.replace(srcDir, '')
          );

          // Returns false when the file exists.
          return !(grunt.file.exists(destPath));
        }
      }
    }
  });

  grunt.registerTask('default', [ 'copy:non_existing' ]);
};