如何在Windows中从文件夹下的所有文件中删除只读属性?
更新:问题是关于如何使用gulpfile 删除只读属性的更多信息
我找到了答案:
为了递归地删除目录下所有文件的只读属性,我们在windows命令行中运行以下命令
attrib -r <dir-name>*.* /s
以下gump任务删除下所有文件的只读属性
gulp.task('remove-readonly-attributes', function() {
require("child_process").exec("attrib -r <dir-name>*.* /s");
});
我最终用gullow-chmod解决了这个问题。
https://www.npmjs.com/package/gulp-chmod