Lua 和操作系统的空白。怎么解决?

发布于 2024-10-31 10:08:57 字数 127 浏览 2 评论 0原文

我试图在 Lua 中使用 io.popen 执行命令,但路径包含空格。我已经用\\\"\'的组合等进行了测试。如何解决这个问题,因为命令总是返回“C:\Program”而不是认出....

I'm trying to execute a command with io.popen in Lua, but the path contains white spaces. I've tested with \\, combinations of \"\', and so on. How to solve this, because the command always returns "C:\Program" not recognized....

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

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

发布评论

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

评论(3

半城柳色半声笛 2024-11-07 10:08:57

您可能想尝试一下

io.popen([[C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe]], "r")

,请注意,您正在使用一个如下所示的参数调用该函数:

"C:/.../vcbuild.exe", "r"

You might want to try

io.popen([[C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe]], "r")

Note that you were calling the function with one argument that looked like this:

"C:/.../vcbuild.exe", "r"

关于从前 2024-11-07 10:08:57
local exe_path = '"C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe"'

io.popen(exe_path, "r")
local exe_path = '"C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe"'

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