blob: 6e091edc320ffa90342db45d653aa6f8c260c86a [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001SYNOPSIS
2 int copy_file(string from, string to)
3
4DESCRIPTION
5 The efun copy_file() will copy the file <from> to the new name <to>.
6 If <to> exists and is a directory, then <from> will be placed in that
7 directory and keep its original name.
8
9 You must have read permission for <from> and write permission for
10 the target file to copy the file.
11
12 On successful completion copy_file() will return 0. If any
13 occurs, 1 is returned, or a runtime is generated.
14
15EXAMPLE
16 copy_file("/players/wizard/obj.c", "/players/wizard/newobj.c");
17
18SEE ALSO
19 mkdir(E), rmdir(E), rm(E), rename(E)