Advertisement
MudkipTheEpic

Disk Restore 1.0

Dec 29th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. local tArgs = { ... }
  2.  
  3. local program = shell.getRunningProgram()
  4. program = fs.getName(program)
  5.  
  6. if tArgs[1] == nil then
  7. print("Usage:")
  8. print(" "..program.." [id] -- Restore transfer with that ID.")
  9. else
  10. -- Get all the files in the directory
  11. local id = tArgs[1]
  12. id = tostring(id)
  13. local compid = "transfer"..id
  14. if fs.isDir("disk/"..compid) then
  15. local sDir = shell.resolve("disk/"..compid)
  16. else
  17. error("No backup with that ID.")
  18. end
  19. -- Sort into dirs/files
  20. local tAll = fs.list("disk/"..compid)
  21. local tFiles = {}
  22. local tDirs = {}
  23.  
  24. for n, sItem in pairs( tAll ) do
  25. if string.sub( sItem, 1, 1 ) ~= "." then
  26. local sPath = fs.combine( "disk/"..compid, sItem )
  27. local sPath2 = fs.getName(sPath)
  28. if fs.isReadOnly( sPath ) ~= true then
  29. if fs.exists(sPath2) then
  30. while true do
  31. term.clear()
  32. term.setCursorPos(1,1)
  33. print("DiskRestore has encountered a problem! Error: [File: "..sPath2.." already exists!]")
  34. print("Would you like to replace this file? Replaced files will be stored in the trash")
  35. print("directory in the disk. Please input Y to replace or N to not replace "..sPath2..".")
  36. local replace = read()
  37. if replace == "Y" then
  38. print("Moving "..sPath2.." to disk/trash/"..sPath2.."...")
  39. sleep(1)
  40. fs.makeDir("disk/trash")
  41. if fs.exists("disk/trash/"..sPath2) then
  42. fs.delete("disk/trash/"..sPath2)
  43. end
  44. fs.move(sPath2, "disk/trash/"..sPath2)
  45. fs.copy(sPath, sPath2)
  46. break
  47. elseif replace == "N" then
  48. print("Not replacing "..sPath2..".")
  49. sleep(1)
  50. break
  51. else
  52. print("Invalid answer.")
  53. end
  54. end
  55. end
  56. end
  57. end
  58. end
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement