This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Revenant Wendigo's profile picture

Saving Programs to a Floppy Disk.

Started by Revenant Wendigo, 12 July 2012 - 09:37 PM
Revenant Wendigo #1
Posted 12 July 2012 - 11:37 PM
Hey there. I was wondering how do I save programs to a Floppy Disk?

I've tried a lot of things and I've searched Google and the wiki. (Also how do I Save stuff from a Floppy Disk to a Computer/Turtle?
Grim Reaper #2
Posted 12 July 2012 - 11:40 PM
To save a file to a floppy disk you have a couple options:

- You could just run 'edit disk/filename' and write your code that way
- You could run 'copy filename disk/filename'
- You could run 'move filename disk/filename'

As for moving from a disk to a computer you could do the same things but mixing up the directories:


- You could run 'copy disk/filename filename'
- You could run 'move disk/filename filename'

And for the turtle I believe that you could do the same things as the first list I suggested.

Hope I helped! :)/>/>
Revenant Wendigo #3
Posted 12 July 2012 - 11:42 PM
To save a file to a floppy disk you have a couple options:

- You could just run 'edit disk/filename' and write your code that way
- You could run 'copy filename disk/filename'
- You could run 'move filename disk/filename'

As for moving from a disk to a computer you could do the same things but mixing up the directories:


- You could run 'copy disk/filename filename'
- You could run 'move disk/filename filename'

And for the turtle I believe that you could do the same things as the first list I suggested.

Hope I helped! :)/>/>


Perfect. 1+'d your post. Thanks.
RandomMcSomethin #4
Posted 15 August 2013 - 08:23 AM
How do you get the name of the disc?
TheOddByte #5
Posted 15 August 2013 - 05:52 PM
If you'd want to quickly backup all your programs onto a disk then you could do this

for _, file in ipairs(fs.list("/")) do -- Gets the files in the default folder
  fs.copy(file,"disk/"..file) --Copies the files
end
RandomMcSomethin #6
Posted 16 August 2013 - 07:53 AM
never mind what I said earlier, I've got the hang of it now! P.S. Turtles and Herobrine do not mix!