Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Rename (computing)
Altering of a name of a file

In computing, rename refers to the altering of a name of a file. This can be done manually by using a shell command such as ren or mv, or by using batch renaming software that can automate the renaming process.

Related Image Collections Add Image
We don't have any YouTube videos related to Rename (computing) yet.
We don't have any PDF documents related to Rename (computing) yet.
We don't have any Books related to Rename (computing) yet.
We don't have any archived web articles related to Rename (computing) yet.

Implementations

The C standard library provides a function called rename which does this action.1 In POSIX, which is extended from the C standard, the rename function will fail if the old and new names are on different mounted file systems.2

In SQL, renames are performed by using the CHANGE specification in ALTER TABLE statements.

Atomic rename

In POSIX, a successful call to rename is guaranteed to have been atomic from the point of view of the current host (i.e., another program would only see the file with the old name or the file with the new name, not both or neither of them). This aspect is often used during a file save operation to avoid any possibility of the file contents being lost if the save operation is interrupted.

The rename function from the C library in Windows does not implement the POSIX atomic behaviour; instead it fails if the destination file already exists. However, other calls in the Windows API do implement the atomic behaviour.

References

  1. ISO/IEC 9899:1999 specification (PDF). p. 268, § 7.19.4.2. http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf

  2. rename: rename a file – System Interfaces Reference, The Single UNIX Specification, Version 4 from The Open Group https://pubs.opengroup.org/onlinepubs/9799919799/functions/rename.html