in reply to Re: Why isn't there a "copy" function?
in thread Why isn't there a "copy" function?
So this is rather - why doesn't Un*x have 'filecopy' syscall? Because it's not that common operation, when you work on something you move it, rename it, modify it AND archive it.
'copy' syscall would be usefull for archiving... or would it?
Besides, unix way is to be ascetic and elegant, avoiding putting messy and slow algorithms under the hood, and filecopy is definitely slow ( you want syscall with fast filecopy - great, here's hardlink for you ).
That is also a reason why rename fails across filesystems, it would be possible to have 'rename' call that works in such conditions ( look at the source of 'mv' command, such non-unix 'complete' design would put all that source into system, this would also add non-determinism to syscalls - normal rename returns very fast, across filesystems rename would take forever )
It seems like you don't appreciate that?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Why isn't there a "copy" function?
by mhi (Friar) on Sep 10, 2004 at 07:08 UTC | |
by Eyck (Priest) on Sep 10, 2004 at 07:54 UTC | |
|
Re^3: Why isn't there a "copy" function?
by hardburn (Abbot) on Sep 10, 2004 at 12:46 UTC | |
by Anonymous Monk on Sep 10, 2004 at 13:06 UTC | |
by hardburn (Abbot) on Sep 10, 2004 at 13:58 UTC |