"... so I don't know if it should even work."

According to the docs it should:

"There are three ways to create a new IO::All object. The first is with the special function io which really just calls IO::All->new. The second is by calling new as a class method. The third is calling new as an object instance method. In this final case, the new objects attributes are copied from the instance object."
io(file-descriptor); IO::All->new(file-descriptor); $io->new(file-descriptor);
"If no file descriptor is provided, an object will still be created, but it must be defined by one of the following methods before it can be used for I/O:"
io->file("path/to/my/file.txt");
"Using the file method sets the type of the object to file and sets the pathname of the file if provided."
io->dir($dir_name);
"Make the object be of type directory."

This works as described for file but not for dir - as described in the OP.

I think, i should ask the author.

Thank you and best regards, Karl

«The Crux of the Biscuit is the Apostrophe»


In reply to Re: Strange IO::All constructor behavior? by karlgoethebier
in thread Strange IO::All constructor behavior? by karlgoethebier

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.