如何在 NSIS 中查找最近编辑的文件
我有一个 NSIS 脚本,可以从本地共享中提取其他安装程序。其中一些更新非常频繁。我希望脚本在某个目录中查找与模式匹配的最新安装程序,而不是每次都推出新的 NSIS 脚本。是否有我可以从 NSIS 调用的插件或 Windows API 来执行此操作?
I have an NSIS script that pulls other installers from a local share. Some of these update very often. Rather than push out a new NSIS script every time, I'd like the script to look for the most recent installer matching a pattern in a certain directory. Is there a plugin or a Windows API that I can call from NSIS to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 !system 命令执行批处理文件(在编译时)
You can execute batch files with the !system command (at compile time)