gulp 移动文件,Gulp:如何复制多个文件和保持文件夹结构

I am trying to copy file's from one folder to another folder using gulp

gulp.task('move-css',function(){

return gulp.src([

'./source/css/one.css',

'./source/other/css/two.css'

]).pipe(gulp.dest('./public/assets/css/'));

});

above code is copying one.css & two.css to public/assets/css folder

and if i use gulp.src('./source/css/*.css') it will copy all css file to public/assets/css folder which is not i want

my question is how to select multiple files and keep the folder stracture ?

解决方案

To achieve this please specify base.

¶ base - Specify the folder relative to the cwd. Default is where the glob begins. This is used to determine the file names when saving in .dest()

In your case it would be:

gulp.task('move-css',function(){

return gulp.src([

'./source/css/one.css',

'./source/other/css/two.css'

], {base: './source/'})

.pipe(gulp.dest('./public/assets/'));

});

Folder structure :

|-gulpfile.js

|-source

| |-css

| |-other

| |-css

|-public

| |-assets

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值