Hi all, I'm using the following code to move all the files from dir1 to dir2...
perl -MFile::Find -MFile::Copy -we ' $dir1="/home/user/dir1"; $dir2="/home/user/dir2"; find(\&wanted, $dir1); sub wanted { File::Copy::move( "$File::Find::dir/$_" , $dir2 ); }'

... which works fine, but I wanted to optimize it by having _as many_ files as possible in the 'wanted' function, instead of moving the files on _one by one_ basis as the above code does ( as I understand it ). Something similar to this shell code, which moves the files all together in _one shot_ or at least in big chunks ...,

mv $( find . -type f ) /home/user/dir2/

Obviously the above code fails for file names with spaces in them ..., so I thought using Perl, but can't seem to find the right approach to insert _all_ of the files. Below is just an illustration of my idea:

File::Copy::move( "$File::Find::dir/*" , $dir2 ),  # a * instead of current file $_

Is this possible ? Thanks.


In reply to Optimizing files' moving with File::Find & File::Copy modules by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.