我是Lua idk的新手,但我想要一个lua脚本来下载文件并将其保存在桌面上,我这样做(我不使用http / socknet)

问题描述 投票:0回答:1

我已经尝试过此代码,但是没有用。我需要将文件保存在桌面上。

website = ("https://hertztrainer.000webhostapp.com/Farmer.ct")
download = loadstring(getInternet().GetURL(website))
download()
--idk how to save it to desktop
lua download cheat-engine
1个回答
0
投票

哦,我已经知道如何使用lua下载文件我使用此代码

function download(url, file)
  local content = getInternet().getURL(url)
  if not content then
    error("Could not connect to website")
  end
  io.open(file, 'wb')
  io.write(content)
  io.close()

end
download("https://hertzxd.github.io/exploit/HertZTrainer.CETRAINER", "HertZTrainer.CETRAINER")

以及如何保存文件?

© www.soinside.com 2019 - 2024. All rights reserved.