gpt4 book ai didi

lua - 如何在 Lua 中下载文件,但在工作时写入本地文件

转载 作者:行者123 更新时间:2023-12-04 16:54:33 25 4
gpt4 key购买 nike

我正在尝试制作更新程序,以便当我的 Lua 应用程序过期时,它将使用 LuaSocket 下载较新的 .exe 文件(可以运行我的 Lua 代码)。

在这个更新程序中,我希望它显示到目前为止已经下载了多少。但是,对于以下 HTTP 请求,它会阻止应用程序直到完全下载:

local b, c, h = http.request("https://www.example.com/Download/Example.exe?from="..Game.Version)

我正在使用线程来下载它,但是在线程内完成下载之前我仍然无法写入文件,因此进度条将变为 0%、100%,中间没有任何内容。

我可以做些什么来下载远程文件,但在下载时将其保存到本地文件?

cURL 可以做到这一点。我不知道 LuaSocket 或 Lua 的其他任何东西是否可以。 :(

最佳答案

你是对的 - cURL 可以做到。 LuaSocket 没有这个功能。您可以创建一个 LTN12 接收器来报告所取得的进展,但在您完全下载文件之前您不会知道文件的总大小,因此它是无用的。为什么不使用 luacurl反而?

local curl = require "luacurl"
local c = curl.new()

function GET(url)
c:setopt(curl.OPT_URL, url)
local t = {} -- this will collect resulting chunks
c:setopt(curl.OPT_WRITEFUNCTION, function (param, buf)
table.insert(t, buf) -- store a chunk of data received
return #buf
end)
c:setopt(curl.OPT_PROGRESSFUNCTION, function(param, dltotal, dlnow)
print('%', url, dltotal, dlnow) -- do your fancy reporting here
end)
c:setopt(curl.OPT_NOPROGRESS, false) -- use this to activate progress
assert(c:perform())
return table.concat(t) -- return the whole data as a string
end

local s = GET 'http://www.lua.org/'
print(s)

关于lua - 如何在 Lua 中下载文件,但在工作时写入本地文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11479783/

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