Difference between revisions of "Fs.move"
From ComputerCraft Wiki
(Admiration Computer) |
(Undo revision 1932 by 91.121.27.33 (talk)) |
||
Line 1: | Line 1: | ||
− | + | {{lowercase}} | |
− | + | {{Function | |
+ | |name=fs.move | ||
+ | |args=[[string (type)|string]] fromPath, [[string (type)|string]] toPath | ||
+ | |api=fs | ||
+ | |desc=Moves a file or directory to a new location (the parent of the new location must be a directory, <var>toPath</var> must include the target filename and cannot be only a directory to move the file into, and <var>toPath</var> itself must not already exist) | ||
+ | |examples= | ||
+ | {{Example | ||
+ | |desc=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") | ||
+ | }} | ||
+ | }} |
Revision as of 02:36, 4 July 2012
Function fs.move | |
Moves a file or directory to a new location (the parent of the new location must be a 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
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") |