Rename a file: Difference between revisions

Content added Content deleted
(→‎{{header|Python}}: Added the alternative module "shutil")
Line 53: Line 53:
=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
<lang AutoHotkey>FileMove, oldname, newname</lang>
<lang AutoHotkey>FileMove, oldname, newname</lang>

=={{header|AutoIt}}==
FileMove("input.txt", "output.txt")
FileMove("\input.txt", "\output.txt")
DirMove("docs", "mydocs")
DirMove("\docs", "\mydocs")


=={{header|BASIC}}==
=={{header|BASIC}}==