0

有没有办法在 grunt.file.copy(...) 期间指定文件的权限,除了在复制完成后使用“fs.chmod”?

否则,我将不得不要求整个“fs”模块,只是为了更改权限。开销会很大吗?

4

1 回答 1

2

grunt.file.copy不幸的是,没有提供任何选项。

但是 gruntcopy任务(来自grunt-contrib-copy)有一个选项(options.mode参见https://github.com/gruntjs/grunt-contrib-copy#mode)。

于 2015-06-20T14:34:06.633 回答