gpt4 book ai didi

copy - Grunt JS 复制到网络位置

转载 作者:行者123 更新时间:2023-12-04 01:02:37 27 4
gpt4 key购买 nike

我想使用 grunt-contrib-copy(或任何其他 grunt 复制插件)将文件复制到网络位置。

尝试以下:

    copy: {
test: {
files: [
{ src: ['Scripts/*'], dest: ['\\\\location\\site\\Scripts\'] }
]
}
}

但得到:

警告:无法写入“\\location\site\Scripts\”文件(错误
或代码:未定义)。使用 --force 继续。


是否可能/如何复制到网络位置?

最佳答案

是的,这很简单,只需用正斜杠定义您的路径:

copy: {
test: {
files: [
{ src: ['Scripts/*'], dest: ['//location/site/Scripts/'] }
]
}
}

这也适用于 Windows,grunt 会解决这个问题。试试看。

关于copy - Grunt JS 复制到网络位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16541233/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com