Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Archive::Zip - writeToFileNamed log?

Status
Not open for further replies.

MoshiachNow

IS-IT--Management
Joined
Feb 6, 2002
Messages
1,851
Location
IL
HI,

How do I get it to log?
$zip->writeToFileNamed($ZIPNAME);

It's a long operation on big files,but I do not seem to manage to get it's log...
Appreciate any advise.(Windows)
Thanks

Long live king Moshiach !
 
Edit Archive::Zip?

The function doesn't return until its completed, so on your script's end there isn't much you can do to get updates on its progress.

If you don't want to modify the actual module, you can copy its "sub writeToFileNames" into your own code but define it as:

Code:
sub Archive::Zip::writeToFileNamed {
   ...
}

-------------
Kirsle.net | Kirsle's Programs and Projects
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top