Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local tArgs = { ... }
- local program = shell.getRunningProgram()
- program = fs.getName(program)
- if tArgs[1] == nil then
- print("Usage:")
- print(" "..program.." [id] -- Restore transfer with that ID.")
- else
- -- Get all the files in the directory
- local id = tArgs[1]
- id = tostring(id)
- local compid = "transfer"..id
- if fs.isDir("disk/"..compid) then
- local sDir = shell.resolve("disk/"..compid)
- else
- error("No backup with that ID.")
- end
- -- Sort into dirs/files
- local tAll = fs.list("disk/"..compid)
- local tFiles = {}
- local tDirs = {}
- for n, sItem in pairs( tAll ) do
- if string.sub( sItem, 1, 1 ) ~= "." then
- local sPath = fs.combine( "disk/"..compid, sItem )
- local sPath2 = fs.getName(sPath)
- if fs.isReadOnly( sPath ) ~= true then
- if fs.exists(sPath2) then
- while true do
- term.clear()
- term.setCursorPos(1,1)
- print("DiskRestore has encountered a problem! Error: [File: "..sPath2.." already exists!]")
- print("Would you like to replace this file? Replaced files will be stored in the trash")
- print("directory in the disk. Please input Y to replace or N to not replace "..sPath2..".")
- local replace = read()
- if replace == "Y" then
- print("Moving "..sPath2.." to disk/trash/"..sPath2.."...")
- sleep(1)
- fs.makeDir("disk/trash")
- if fs.exists("disk/trash/"..sPath2) then
- fs.delete("disk/trash/"..sPath2)
- end
- fs.move(sPath2, "disk/trash/"..sPath2)
- fs.copy(sPath, sPath2)
- break
- elseif replace == "N" then
- print("Not replacing "..sPath2..".")
- sleep(1)
- break
- else
- print("Invalid answer.")
- end
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement