复制整个目录

时间:2016-04-07 12:37:52

标签: javascript gruntjs grunt-contrib-copy

我正在尝试复制文件夹及其所有子文件夹。

<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 50 38.7" enable-background="new 0 0 50 38.7" xml:space="preserve">

<polygon fill="#08B2EF" points="49.4,14.6 25.4,1.2 0.6,14.6 11.1,14.6 7.5,36.2 42.5,36.2 38.5,14.6 ">

<animateMotion path="M 0 0 V 20 Z" dur="20s" repeatCount="indefinite" />
</polygon>
</svg>

我收到错误:

  

无法创建目录&#34; / static&#34; (错误代码:EACCES)。

我哪里错了?

1 个答案:

答案 0 :(得分:0)

更改为以下内容并尝试此操作。

@IBAction func switchValueChanged(sender: UISwitch) {
    sender.setOn(false, animated: true)
}

copy:{
        test:{
            files:[
                { 
                    src:['static/**'],
                    dest: 'test/'
                }
              ]
        }
}