To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Rename (computing)

From Wikipedia, the free encyclopedia

Renaming a file in Ubuntu 18.04

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.

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[citation needed].

References

  1. ^ ISO/IEC 9899:1999 specification (PDF). p. 268, § 7.19.4.2.
  2. ^ rename: rename a file – System Interfaces Reference, The Single UNIX Specification, Version 4 from The Open Group


This page was last edited on 11 April 2024, at 04:55
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.