in reply to Re: Unicode in filenames (part 2)
in thread Unicode in filenames (part 2)

Thank you, Thelonius! That works great.

Obviously, the module documentation needs fixing. How do I go about that?

Any idea why the three createFile calls are failing?

Replies are listed 'Best First'.
Re^3: Unicode in filenames (part 2)
by Thelonius (Priest) on Mar 21, 2006 at 14:02 UTC
    I would send any change requests to the module author, tyemq@cpan.org and the libwin32 maintainer, jand@activestate.com.

    Change requests are more likely to be made expeditiously if you submit them as patches (another Larry Wall claim to fame).

    Calling createFile with just the file name defaults to "r ke" access, i.e. GENERIC_READ, OPEN_EXISTING.

    Did the files exist?

Re^3: Unicode in filenames (part 2)
by dsully (Acolyte) on Mar 21, 2006 at 15:48 UTC
    createFile() probably wraps CreateFileA() which is the single byte version.