Advertisement
Guest User

ComputerCraft Tape Writer

a guest
Jan 3rd, 2016
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. local args = {...}
  2. if #args ~= 1 then
  3. print("Usage: tapewrite filename")
  4. return
  5. end
  6. if not fs.exists(args[1]) then
  7. print("No such file: "..args[1])
  8. return
  9. end
  10. local tape=peripheral.find("tape_drive")
  11. if not tape then
  12. print("No tape drive found")
  13. return
  14. end
  15. local file=fs.open(args[1], "rb")
  16. if not file then
  17. print("Failed to open file: "..args[1])
  18. end
  19. local size=fs.getSize(args[1])
  20. if tape.getState() ~= "STOPPED" then
  21. print("Stopping tape")
  22. tape.stop()
  23. end
  24. print("Rewinding tape ...")
  25. tape.seek(-math.huge)
  26. print("Writing "..size.." byte"..(size==1 and "" or "s").." onto the tape")
  27. local blocksize=8192
  28. while true do
  29. local data={}
  30. for i=1,blocksize do
  31. local byte=file.read()
  32. if not byte then break end
  33. data[#data+1]=string.char(byte)
  34. end
  35. if #data ~= 0 then
  36. tape.write(table.concat(data))
  37. sleep(0)
  38. else
  39. break
  40. end
  41. end
  42. file.close()
  43. print("Rewinding tape ...")
  44. tape.seek(-math.huge)
  45. print("Tape Written")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement