Advertisement
TIMAS_Bro

savetodevice.lua

Feb 4th, 2024 (edited)
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local _, files = os.pullEvent("file_transfer")
  2. for _, file in ipairs(files.getFiles()) do
  3.   local size = file.seek("end")
  4.   file.seek("set", 0)
  5.   local f = fs.open("songs/" .. file.getName(), "w")
  6.   f.write(file.readAll())
  7.   f.close()
  8.   print("Sucessfully wrote song to device. Play with 'play \"" .. file.getName() .. "\"'.")
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement