我已经尝试过此代码,但是没有用。我需要将文件保存在桌面上。
website = ("https://hertztrainer.000webhostapp.com/Farmer.ct")
download = loadstring(getInternet().GetURL(website))
download()
--idk how to save it to desktop
哦,我已经知道如何使用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")
以及如何保存文件?