BillBodkin

file downloader

Dec 25th, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. function download(url, file)
  2.   local content = http.get(url).readAll()
  3.   if not content then
  4.         error("Could not connect to website")
  5.   end
  6.   f = fs.open(file, "w")
  7.   f.write(content)
  8.   f.close()
  9. end
Add Comment
Please, Sign In to add comment