[go: nahoru, domu]

File copying: Difference between revisions

Content deleted Content added
Addbot (talk | contribs)
m Bot: Migrating 2 interwiki links, now provided by Wikidata on d:q4741970
add tangentially related items to see also
Line 1:
{{Unreferenced stub|auto=yes|date=December 2009}}
 
In the realm of computer file management, '''file copying''' is the creation of a new [[computer file|file]] which has the same content as an existing file.
 
Line 7 ⟶ 6:
Internally, however, while some systems have specialized [[Application programming interface|application programming interfaces]] ([[API]]s) for copying files (like CopyFile and CopyFileEx in [[Windows API]]), others (like Unix and MS-DOS) fall back to simply reading the contents of the old file and writing it to the new file. This makes little difference with local files (those on the computer's hard drive), but provides an interesting situation when both the source and target files are located on a remote [[file server]].  Operating systems with specialized file copying APIs are usually able to tell the server to perform the copying locally, without sending file contents over the network, thus greatly improving performance.  Those systems that have no comparable APIs, however, have to read the file contents over the network, and then send them back again, over the network.  Sometimes, remote file copying is performed with a specialized command, like "ncopy" in MS-DOS clients for [[Novell NetWare]].
 
An even more complicated situation arises when one needs to copy files between two remote servers.  The simple way is to read data from one server, and then to write the data to the second server. 
 
== See also ==
Line 13 ⟶ 12:
* [[Hard copy]]
* [[List of file copying software]]
* [[ln (Unix)]]
* [[NTFS junction point]]
 
{{DEFAULTSORT:File Copying}}