gpt4 book ai didi

lua - 获取操作系统版本

转载 作者:行者123 更新时间:2023-12-04 21:27:57 29 4
gpt4 key购买 nike

有没有获取操作系统类型和版本的函数?

最佳答案

恐怕我不知道 *nix,但您可以简单地使用 io popen 来获取结果,例如在 Windows 上,以下将返回标准的 Windows 版本信息

local f = io.popen("ver") -- runs command
local l = f:read("*a") -- read output of command
print(l)
f:close()

关于lua - 获取操作系统版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3652271/

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