in reply to Re: Optimizing files' moving with File::Find & File::Copy modules
in thread Optimizing files' moving with File::Find & File::Copy modules
I could have used system "find ...", but I'd be facing the same issues ( special chars, whitespaces in filenames ), and also I'd like to avoid find ... -exec .. as this will process the files one by one. I need find, cause I need a recursive selective check to be done on all files.
>> Note that File::Copy::move doesn't allow moving more than one file at a time.<<
Hmmm ... that's bad news ... :(
My whole point is optimization, so having _all_ the files ( with potentially bad characters in their names ) available to 'mv' command, but I guess that's not possible, and doing that with shell only is a real pain.
Thank you anyway.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Optimizing files' moving with File::Find & File::Copy modules
by JavaFan (Canon) on Nov 17, 2009 at 10:44 UTC | |
by runrig (Abbot) on Nov 17, 2009 at 17:16 UTC | |
by JavaFan (Canon) on Nov 17, 2009 at 17:27 UTC | |
by runrig (Abbot) on Nov 17, 2009 at 17:42 UTC |