On Tue, Nov 04, 2003 at 08:52:17PM -0800, Michael G Schwern wrote: > > What is there to fix? Sometimes one behaviour is what is desired, > > sometimes another. Given that it is not documented what behaviour is > > the default, I see nothing to fix. > > Ok, we can change it and document it. :) Unless some scripts rely on the current behaviour. [The current behaviour is not documented in README.os2 too.] > Whether or not File::Copy overwrites by default doesn't strike me as being > very platform specific. Smells more like a bug or an unconsidered > consequence of using an OS/2 library call to copy files. > > Can you pass some flag to DosCopy to make it overwrite or unlink the > destination file beforehand? This is what bit 0x1 of the third argument `flag' of File::Copy::syscopy() is for; when set to 1, it means overwrite the target. (Other two bits: 0x2 regulates append/replace, and 0x4 what to do if the file has "Extended Attributes" (one can assign a hash of arbitrary attributes to a file), and the target file system does not allow extended attributes.) Hope this helps, IlyaThread Previous | Thread Next