grunt-contrib-copy文件不会复制到正确的位置

时间:2014-05-26 18:16:52

标签: grunt-contrib-copy

我正在尝试将cshtml文件复制到生产文件夹中。 文件位于路径中: a \ b \ c \ d,目的地是\ b \ e

任务是

 copy: {
        copyCSHtml: {
            src: '../NGWeb/client/app/appComponents/**/*.cshtml',
            dest: '../NGWeb/client/app/dist/',
        }
    }

我得到的实际结果是 A \ B \ A \ B \ C \ d 1.为什么会创造整个尾随路径? 2.为什么之前复制一个目录?

是否可以获得\ b \ e \ d?


  cwd: '../NGWeb/client/app/appComponents/',
            src: [ '**/*.cshtml' ],
            dest: '../NGWeb/client/app/dist',
            expand: true

0 个答案:

没有答案