Good advice. Since the arguments to copy() are also variables I would always include them in the die string too just to make sure they contain what you think they do. | [reply] [d/l] [select] |
While it is certainly advisable to output $!, it is not always clear whether the reported error relates to the source- or the destination file. This is particularily true in case the code is supposed to run on Windows, where I found that many kinds of access problems lead to the same error string.
I would therefore also do some basic checks before calling copy, at least: read permission on the source file, write permission for the destination directory.
--
Ronald Fischer <ynnor@mm.st>
| [reply] [d/l] |