Now that you have an answer to the spaces-in-filenames question, why not make things easier in terms of quoting? You have:

my $quotedfullelementpath = "\"" . $folderfullpath . "/" . $element . +"\"";

Of all the options available to you, you've settled for the most difficult and least attractive. You could use single quotes around the double quote characters, or the alternate single quote q. You could use a symbol constant to represent the quote and slash. Best of all, you could mash it all into a single string using qq! Assuming there was a real reason to put the double quotes in the string.

my $quotedfullelementpath = '"' . $folderfullpath . '/' . $element . ' +"'; my $quotedfullelementpath = q{"} . $folderfullpath . q{/} . $element . + q{"}; use Readonly; Readonly my $DQUOTE => q{"}; Readonly my $SLASH => q{/}; my $quotedfullelementpath = $DQUOTE . $folderfullpath . $SLASH . $element . $DQUOTE; my $quotedfullelementpath = qq{"$folderfullpath/$element "};

Why suffer when there are alternatives?

As Occam said: Entia non sunt multiplicanda praeter necessitatem.


In reply to Re: File test -T (text) and quoted filenames by TomDLux
in thread File test -T (text) and quoted filenames by AdamtheKiwi

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.