Penguin
Annotated edit history of rename(2) version 2, including all changes. View license author blame.
Rev Author # Line
1 perry 1 !!NAME
2 PerryLorier 2 rename - change the name or location of a file
1 perry 3
4 !!SYNOPSIS
2 PerryLorier 5 __#include <stdio.h>__
1 perry 6
2 PerryLorier 7 __int rename(const char *__''oldpath''__, const char *__''newpath''__);__
1 perry 8
9 !!DESCRIPTION
2 PerryLorier 10 __rename__ renames a file, moving it between directories if required.
1 perry 11
2 PerryLorier 12 Any other hard links to the file (as created using link(2)) are unaffected.
1 perry 13
2 PerryLorier 14 If ''newpath'' already exists it will be atomically replaced (subject to a few conditions - see ERRORS below), so that there is no point at which another process
15 attempting to access ''newpath'' will find it missing.
1 perry 16
2 PerryLorier 17 If ''newpath'' exists but the operation fails for some reason __rename__ guarantees to leave an instance of ''newpath'' in place.
1 perry 18
2 PerryLorier 19 However, when overwriting there will probably be a window in which both ''oldpath'' and ''newpath'' refer to the file being renamed.
1 perry 20
2 PerryLorier 21 If ''oldpath'' refers to a symbolic link the link is renamed; if ''newpath'' refers to a symbolic link the link will be overwritten.
1 perry 22
23 !!RETURN VALUE
2 PerryLorier 24 On success, zero is returned. On error, -1 is returned, and ''errno'' is set appropriately.
1 perry 25
26 !!ERRORS
2 PerryLorier 27 ;[EISDIR]: ''newpath'' is an existing directory, but ''oldpath'' is not a directory.
28 ;[EXDEV]: ''oldpath'' and ''newpath'' are not on the same filesystem.
29 ;[ENOTEMPTY] or [EEXIST]: ''newpath'' is a non-empty directory, i.e., contains entries other than '.' and '..'.
30 ;[EBUSY]: The rename fails because ''oldpath'' or ''newpath'' is a directory that is in use by some process (perhaps as current working directory, or as root directory, or because it was open for reading) or is in use by the system (for example as mount point), while the system considers this an error. (Note that there is no requirement to return EBUSY in such cases - there is nothing wrong with doing the rename anyway - but it is allowed to return EBUSY if the system cannot otherwise handle such situations.)
31 ;[EINVAL]: The new pathname contained a path prefix of the old, or, more generally, an attempt was made to make a directory a subdirectory of itself.
32 ;[EMLINK]: ''oldpath'' already has the maximum number of links to it, or it was a directory and the directory containing ''newpath'' has the maximum number of links.
33 ;[ENOTDIR]: A component used as a directory in ''oldpath'' or ''newpath'' is not, in fact, a directory. Or, ''oldpath'' is a directory, and ''newpath'' exists but is not a directory.
34 ;[EFAULT]: ''oldpath'' or ''newpath'' points outside your accessible address space.
35 ;[EACCES]: Write access to the directory containing ''oldpath'' or ''newpath'' is not allowed for the process's effective uid, or one of the directories in ''oldpath'' or
36 ''newpath'' did not allow search (execute) permission, or ''oldpath'' was a directory and did not allow write permission (needed to update the __..__ entry).
37 ;[EPERM] or [EACCES]: The directory containing ''oldpath'' has the sticky bit set and the process's effective uid is neither that of root nor the uid of the file to be deleted nor that of the directory containing it, or ''newpath'' is an existing file and the directory containing it has the sticky bit set and the process's effective uid is neither that of root nor the uid of the file to be replaced nor that of the directory containing it, or the filesystem containing ''pathname'' does not support renaming of the type requested.
38 ;[ENAMETOOLONG]: ''oldpath'' or ''newpath'' was too long.
39 ;[ENOENT]: A directory component in ''oldpath or newpath'' does not exist or is a dangling symbolic link.
40 ;[ENOMEM]: Insufficient kernel memory was available.
41 ;[EROFS]: The file is on a read-only filesystem.
42 ;[ELOOP]: Too many symbolic links were encountered in resolving ''oldpath'' or ''newpath''.
43 ;[ENOSPC]: The device containing the file has no room for the new directory entry.
1 perry 44
45 !!CONFORMING TO
2 PerryLorier 46 [POSIX], 4.3BSD, ANSI C
1 perry 47
48 !!BUGS
2 PerryLorier 49 On NFS filesystems, you can not assume that if the operation failed the file was not renamed. If the server does the rename operation and then crashes, the retransmitted RPC which will be processed when the server is up again causes a failure. The application is expected to deal with this. See link(2) for a similar problem.
1 perry 50
51 !!SEE ALSO
2 PerryLorier 52 link(2), unlink(2), symlink(2), mv(1)
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach() (...repeated 8 times)