in reply to Usage of File::Spec->devnull() on Windows

Hmmm... interesting.

Sorry I don't have the answer, but I can offer a workaround. Archive::Zip supports writeToFileHandle as an alternative to writeToFileNamed. You can probably pass it something other than a real filehandle, like maybe an IO::Null object.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^2: Usage of File::Spec->devnull() on Windows
by chazubell (Beadle) on Aug 02, 2012 at 16:28 UTC
    Thanks. To all. I will try writing to a file handle.