在 NSIS 文件复制命令中排除一个文件(递归)

发布于 2024-10-21 06:22:58 字数 210 浏览 3 评论 0原文

我正在尝试从脚本运行它。 我在这里尝试做的是将包目录中的所有文件复制到当前输出路径,仅不包括 wsdl4j-1.5.1.jar。这不会使脚本编译失败,但也不会排除该文件,有什么想法吗?

File /r /x "package\lib\wsdl4j-1.5.1.jar" "package\*.*"

谢谢, 奥哈德

I'm trying to run this from a script.
What I'm trying to do here is copy all files in package directory to the current outpath, excluding only wsdl4j-1.5.1.jar. this won't fail the script compilation but won't exclude the file either, any ideas ?

File /r /x "package\lib\wsdl4j-1.5.1.jar" "package\*.*"

thanks,
Ohad

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑着哭最痛 2024-10-28 06:22:58

好吧,这仍然让我觉得奇怪,但这就是解决方案

File /r /x wsdl4j-1.5.1.jar package\*.*

Well, it still strikes my as odd, but this is the solution

File /r /x wsdl4j-1.5.1.jar package\*.*
¢蛋碎的人ぎ生 2024-10-28 06:22:58

这是对我有用的解决方案。我还需要排除一个文件夹....svn 文件夹。

;--////////////////////////////////////////////// //////////////////////////////////////////////////////////

;-- 添加 MVC Web 文件

;--///////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////

设置覆盖

SetOutPath "$INSTDIR\WebServer\"

文件“C:\mvcwebsite\favicon.ico”

SetOutPath "$INSTDIR\WebServer\Content"

文件 /r /x '.svn' 'C:\mvcwebsite\Content*.'

SetOutPath "$INSTDIR\WebServer\Scripts"

文件 /r /x '.svn' 'C:\mvcwebsite\Scripts*.
'

SetOutPath "$INSTDIR\WebServer\Views"

文件 /r /x '.svn' 'C:\mvcwebsite\Views*.*'

;--///////////////////////////////////////////////////////////////////////////////// ////////////////////////////

这是“文件”NSIS 帮助

Here is the solution that worked for me. I needed to exclude a folder also...the .svn folder.

;--//////////////////////////////////////////////////////////////////////////

;-- Add MVC Web Files

;--//////////////////////////////////////////////////////////////////////////

SetOverwrite on

SetOutPath "$INSTDIR\WebServer\"

File "C:\mvcwebsite\favicon.ico"

SetOutPath "$INSTDIR\WebServer\Content"

File /r /x '.svn' 'C:\mvcwebsite\Content*.'

SetOutPath "$INSTDIR\WebServer\Scripts"

File /r /x '.svn' 'C:\mvcwebsite\Scripts*.
'

SetOutPath "$INSTDIR\WebServer\Views"

File /r /x '.svn' 'C:\mvcwebsite\Views*.*'

;--//////////////////////////////////////////////////////////////////////////

Here is the 'File' NSIS Help

墨小墨 2024-10-28 06:22:58

/x 对字符串的格式很挑剔,一些 nsis 开关更喜欢开关本身成为字符串的一部分,例如“/x foo bar”,但我不确定这在这种情况下是否有帮助......

/x is picky about the format of the string, some of the nsis switches prefer the switch itself to be part of the string, eg "/x foo bar" but I'm not sure if that helps in this case...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文