in reply to Re: Optimizing files' moving with File::Find & File::Copy modules
in thread Optimizing files' moving with File::Find & File::Copy modules
Personally, if I were to move within the file system, I would call rename (and use an external find to find the files); if I were to move from one filesystem to the other, I would realize the entire process is likely to be disk I/O bound, so I wouldn't care about the process calls.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Optimizing files' moving with File::Find & File::Copy modules
by holli (Abbot) on Nov 17, 2009 at 14:29 UTC |