如何将一个文件夹复制到另一个文件夹中?

时间:2018-09-28 06:30:27

标签: angularjs gruntjs

我要将所有文件夹和文件从dist文件夹复制到deid文件夹,下面是我的文件夹结构

enter image description here

copyDist: {
      main: {
        expand: true,
        cwd: 'integration', // 'Current Working Directory'
        src: 'dist', // Read everything inside the cwd
        dest: 'deid/', // Destination folder
      }
    },

gruntfile.js中编写了上面的代码,当我运行grunt copyDist时却反复显示

running "copyDist:main" (copyDist) task

如何解决这个问题?

0 个答案:

没有答案