我正在尝试将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