fs.move

From ComputerCraft Wiki
Jump to: navigation, search


Grid Redstone.png  Function fs.move
Moves a file or directory to a new location. The parent of the new location must be an existing, writable directory, toPath must include the target filename and cannot be only a directory to move the file into, and toPath itself must not already exist.
Syntax fs.move(string fromPath, string toPath)
Returns nil
Part of ComputerCraft
API fs

Examples

Grid paper.png  Example
Renames a file from "test1" to "test2" and moves it from the root directory into a directory called "mydir"
Code
fs.move("test1", "mydir/test2")