我想将一个空目录从我的根文件夹复制到新的初始化项目中。我想这样做,为新项目提供初始目录结构。
我在文件夹“my-template/root/”中有这样的空目录,但不会被复制:
// Files to copy (and process).
var files = init.filesToCopy(props);
// Actually copy (and process) files.
init.copyAndProcess(files, props);
我试过这个:
// to copy also the empty directories
init.copy('myDir1/');
init.copy('myDir2/');
但比 grunt-init 崩溃:
Error: Unable to read "grunt-init-example/root/myDir1/" file (Error code: EISDIR).
我该怎么做才能获得一个空目录到目标文件夹?
我使用 grunt@0.4.0 和 grunt-init@0.2.0。